xref: /petsc/src/sys/classes/viewer/impls/matlab/vmatlab.c (revision 12801b3912e16a0709a58df21c3d316f86673188)
15c6c1daeSBarry Smith 
2af0996ceSBarry Smith #include <petsc/private/viewerimpl.h>
35c6c1daeSBarry Smith #include <mat.h>
45c6c1daeSBarry Smith 
55c6c1daeSBarry Smith 
65c6c1daeSBarry Smith typedef struct {
75c6c1daeSBarry Smith   MATFile       *ep;
85c6c1daeSBarry Smith   PetscMPIInt   rank;
95c6c1daeSBarry Smith   PetscFileMode btype;
105c6c1daeSBarry Smith } PetscViewer_Matlab;
115c6c1daeSBarry Smith 
125c6c1daeSBarry Smith /*@C
135c6c1daeSBarry Smith     PetscViewerMatlabPutArray - Puts an array into the MATLAB viewer.
145c6c1daeSBarry Smith 
155c6c1daeSBarry Smith       Not collective: only processor zero saves the array
165c6c1daeSBarry Smith 
175c6c1daeSBarry Smith     Input Parameters:
185c6c1daeSBarry Smith +    mfile - the viewer
195c6c1daeSBarry Smith .    m,n - the dimensions of the array
205c6c1daeSBarry Smith .    array - the array (represented in one dimension)
215c6c1daeSBarry Smith -    name - the name of the array
225c6c1daeSBarry Smith 
235c6c1daeSBarry Smith    Level: advanced
245c6c1daeSBarry Smith 
255c6c1daeSBarry Smith      Notes: Only writes array values on processor 0.
265c6c1daeSBarry Smith 
275c6c1daeSBarry Smith @*/
285c6c1daeSBarry Smith PetscErrorCode  PetscViewerMatlabPutArray(PetscViewer mfile,int m,int n,const PetscScalar *array,const char *name)
295c6c1daeSBarry Smith {
305c6c1daeSBarry Smith   PetscErrorCode     ierr;
315c6c1daeSBarry Smith   PetscViewer_Matlab *ml = (PetscViewer_Matlab*)mfile->data;
325c6c1daeSBarry Smith   mxArray            *mat;
335c6c1daeSBarry Smith 
345c6c1daeSBarry Smith   PetscFunctionBegin;
355c6c1daeSBarry Smith   if (!ml->rank) {
365c6c1daeSBarry Smith     ierr = PetscInfo1(mfile,"Putting MATLAB array %s\n",name);CHKERRQ(ierr);
375c6c1daeSBarry Smith #if !defined(PETSC_USE_COMPLEX)
385c6c1daeSBarry Smith     mat  = mxCreateDoubleMatrix(m,n,mxREAL);
395c6c1daeSBarry Smith #else
405c6c1daeSBarry Smith     mat  = mxCreateDoubleMatrix(m,n,mxCOMPLEX);
415c6c1daeSBarry Smith #endif
425c6c1daeSBarry Smith     ierr = PetscMemcpy(mxGetPr(mat),array,m*n*sizeof(PetscScalar));CHKERRQ(ierr);
435c6c1daeSBarry Smith     matPutVariable(ml->ep,name,mat);
445c6c1daeSBarry Smith 
455c6c1daeSBarry Smith     ierr = PetscInfo1(mfile,"Put MATLAB array %s\n",name);CHKERRQ(ierr);
465c6c1daeSBarry Smith   }
475c6c1daeSBarry Smith   PetscFunctionReturn(0);
485c6c1daeSBarry Smith }
495c6c1daeSBarry Smith 
505c6c1daeSBarry Smith PetscErrorCode  PetscViewerMatlabPutVariable(PetscViewer viewer,const char *name,void *mat)
515c6c1daeSBarry Smith {
52a297a907SKarl Rupp   PetscViewer_Matlab *ml = (PetscViewer_Matlab*)viewer->data;
535c6c1daeSBarry Smith 
545c6c1daeSBarry Smith   PetscFunctionBegin;
555c6c1daeSBarry Smith   matPutVariable(ml->ep,name,(mxArray*)mat);
565c6c1daeSBarry Smith   PetscFunctionReturn(0);
575c6c1daeSBarry Smith }
585c6c1daeSBarry Smith 
595c6c1daeSBarry Smith /*@C
605c6c1daeSBarry Smith     PetscViewerMatlabGetArray - Gets a variable from a MATLAB viewer into an array
615c6c1daeSBarry Smith 
625c6c1daeSBarry Smith     Not Collective; only processor zero reads in the array
635c6c1daeSBarry Smith 
645c6c1daeSBarry Smith     Input Parameters:
655c6c1daeSBarry Smith +    mfile - the MATLAB file viewer
665c6c1daeSBarry Smith .    m,n - the dimensions of the array
675c6c1daeSBarry Smith .    array - the array (represented in one dimension)
685c6c1daeSBarry Smith -    name - the name of the array
695c6c1daeSBarry Smith 
705c6c1daeSBarry Smith    Level: advanced
715c6c1daeSBarry Smith 
725c6c1daeSBarry Smith      Notes: Only reads in array values on processor 0.
735c6c1daeSBarry Smith 
745c6c1daeSBarry Smith @*/
755c6c1daeSBarry Smith PetscErrorCode  PetscViewerMatlabGetArray(PetscViewer mfile,int m,int n,PetscScalar *array,const char *name)
765c6c1daeSBarry Smith {
775c6c1daeSBarry Smith   PetscErrorCode     ierr;
785c6c1daeSBarry Smith   PetscViewer_Matlab *ml = (PetscViewer_Matlab*)mfile->data;
795c6c1daeSBarry Smith   mxArray            *mat;
805c6c1daeSBarry Smith 
815c6c1daeSBarry Smith   PetscFunctionBegin;
825c6c1daeSBarry Smith   if (!ml->rank) {
835c6c1daeSBarry Smith     ierr = PetscInfo1(mfile,"Getting MATLAB array %s\n",name);CHKERRQ(ierr);
845c6c1daeSBarry Smith     mat  = matGetVariable(ml->ep,name);
855c6c1daeSBarry Smith     if (!mat) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_LIB,"Unable to get array %s from matlab",name);
865c6c1daeSBarry Smith     ierr = PetscMemcpy(array,mxGetPr(mat),m*n*sizeof(PetscScalar));CHKERRQ(ierr);
875c6c1daeSBarry Smith     ierr = PetscInfo1(mfile,"Got MATLAB array %s\n",name);CHKERRQ(ierr);
885c6c1daeSBarry Smith   }
895c6c1daeSBarry Smith   PetscFunctionReturn(0);
905c6c1daeSBarry Smith }
915c6c1daeSBarry Smith 
925c6c1daeSBarry Smith PetscErrorCode  PetscViewerFileSetMode_Matlab(PetscViewer viewer,PetscFileMode type)
935c6c1daeSBarry Smith {
945c6c1daeSBarry Smith   PetscViewer_Matlab *vmatlab = (PetscViewer_Matlab*)viewer->data;
955c6c1daeSBarry Smith 
965c6c1daeSBarry Smith   PetscFunctionBegin;
975c6c1daeSBarry Smith   vmatlab->btype = type;
985c6c1daeSBarry Smith   PetscFunctionReturn(0);
995c6c1daeSBarry Smith }
1005c6c1daeSBarry Smith 
1015c6c1daeSBarry Smith /*
1025c6c1daeSBarry Smith         Actually opens the file
1035c6c1daeSBarry Smith */
1045c6c1daeSBarry Smith PetscErrorCode  PetscViewerFileSetName_Matlab(PetscViewer viewer,const char name[])
1055c6c1daeSBarry Smith {
1065c6c1daeSBarry Smith   PetscViewer_Matlab *vmatlab = (PetscViewer_Matlab*)viewer->data;
1075c6c1daeSBarry Smith   PetscFileMode      type     = vmatlab->btype;
1085c6c1daeSBarry Smith 
1095c6c1daeSBarry Smith   PetscFunctionBegin;
1105c6c1daeSBarry Smith   if (type == (PetscFileMode) -1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call PetscViewerFileSetMode() before PetscViewerFileSetName()");
1115c6c1daeSBarry Smith   if (vmatlab->ep) matClose(vmatlab->ep);
1125c6c1daeSBarry Smith 
1135c6c1daeSBarry Smith   /* only first processor opens file */
1145c6c1daeSBarry Smith   if (!vmatlab->rank) {
115a297a907SKarl Rupp     if (type == FILE_MODE_READ) vmatlab->ep = matOpen(name,"r");
116a297a907SKarl Rupp     else if (type == FILE_MODE_WRITE || type == FILE_MODE_WRITE) vmatlab->ep = matOpen(name,"w");
117a297a907SKarl Rupp     else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Unknown file type");
1185c6c1daeSBarry Smith   }
1195c6c1daeSBarry Smith   PetscFunctionReturn(0);
1205c6c1daeSBarry Smith }
1215c6c1daeSBarry Smith 
1225c6c1daeSBarry Smith PetscErrorCode PetscViewerDestroy_Matlab(PetscViewer v)
1235c6c1daeSBarry Smith {
1245c6c1daeSBarry Smith   PetscErrorCode     ierr;
1255c6c1daeSBarry Smith   PetscViewer_Matlab *vf = (PetscViewer_Matlab*)v->data;
1265c6c1daeSBarry Smith 
1275c6c1daeSBarry Smith   PetscFunctionBegin;
1285c6c1daeSBarry Smith   if (vf->ep) matClose(vf->ep);
1295c6c1daeSBarry Smith   ierr = PetscFree(vf);CHKERRQ(ierr);
1305c6c1daeSBarry Smith   PetscFunctionReturn(0);
1315c6c1daeSBarry Smith }
1325c6c1daeSBarry Smith 
1338556b5ebSBarry Smith /*MC
1348556b5ebSBarry Smith    PETSCVIEWERMATLAB - A viewer that saves the variables into a MATLAB .mat file that may be read into MATLAB
1358556b5ebSBarry Smith        with load('filename').
1368556b5ebSBarry Smith 
1378556b5ebSBarry Smith    Level: intermediate
1388556b5ebSBarry Smith 
1398556b5ebSBarry Smith        Note: Currently can only save PETSc vectors to .mat files, not matrices (use the PETSCVIEWERBINARY and
1408556b5ebSBarry Smith              ${PETSC_DIR}/share/petsc/matlab/PetscBinaryRead.m to read matrices into MATLAB).
1418556b5ebSBarry Smith 
1428556b5ebSBarry Smith              For parallel vectors obtained with DMCreateGlobalVector() or DMGetGlobalVector() the vectors are saved to
1438556b5ebSBarry Smith              the .mat file in natural ordering. You can use DMView() to save the DMDA information to the .mat file
1448556b5ebSBarry Smith              the fields in the MATLAB loaded da variable give the array dimensions so you can reshape the MATLAB
1458556b5ebSBarry Smith              vector to the same multidimensional shape as it had in PETSc for plotting etc. For example,
1468556b5ebSBarry Smith 
1478556b5ebSBarry Smith $             In your PETSc C/C++ code (assuming a two dimensional DMDA with one degree of freedom per node)
1488556b5ebSBarry Smith $                PetscObjectSetName((PetscObject)x,"x");
1498556b5ebSBarry Smith $                VecView(x,PETSC_VIEWER_MATLAB_WORLD);
1508556b5ebSBarry Smith $                PetscObjectSetName((PetscObject)da,"da");
1518556b5ebSBarry Smith $                DMView(x,PETSC_VIEWER_MATLAB_WORLD);
1528556b5ebSBarry Smith $             Then from MATLAB
1538556b5ebSBarry Smith $                load('matlaboutput.mat')   % matlaboutput.mat is the default filename
1548556b5ebSBarry Smith $                xnew = zeros(da.n,da.m);
1558556b5ebSBarry Smith $                xnew(:) = x;    % reshape one dimensional vector back to two dimensions
1568556b5ebSBarry Smith 
1578556b5ebSBarry Smith               If you wish to put the same variable into the .mat file several times you need to give it a new
1588556b5ebSBarry Smith               name before each call to view.
1598556b5ebSBarry Smith 
1608556b5ebSBarry Smith               Use PetscViewerMatlabPutArray() to just put an array of doubles into the .mat file
1618556b5ebSBarry Smith 
1628556b5ebSBarry Smith .seealso:  PETSC_VIEWER_MATLAB_(),PETSC_VIEWER_MATLAB_SELF, PETSC_VIEWER_MATLAB_WORLD,PetscViewerCreate(),
1638556b5ebSBarry Smith            PetscViewerMatlabOpen(), VecView(), DMView(), PetscViewerMatlabPutArray(), PETSCVIEWERBINARY, PETSCVIEWERASCII, PETSCVIEWERDRAW,
1648556b5ebSBarry Smith            PETSC_VIEWER_STDOUT_(), PetscViewerFileSetName(), PetscViewerFileSetMode(), PetscViewerFormat
1658556b5ebSBarry Smith 
1668556b5ebSBarry Smith M*/
1678cc058d9SJed Brown PETSC_EXTERN PetscErrorCode PetscViewerCreate_Matlab(PetscViewer viewer)
1685c6c1daeSBarry Smith {
1695c6c1daeSBarry Smith   PetscErrorCode     ierr;
1705c6c1daeSBarry Smith   PetscViewer_Matlab *e;
1715c6c1daeSBarry Smith 
1725c6c1daeSBarry Smith   PetscFunctionBegin;
173b00a9115SJed Brown   ierr         = PetscNewLog(viewer,&e);CHKERRQ(ierr);
174ce94432eSBarry Smith   ierr         = MPI_Comm_rank(PetscObjectComm((PetscObject)viewer),&e->rank);CHKERRQ(ierr);
1755c6c1daeSBarry Smith   e->btype     = (PetscFileMode)-1;
1765c6c1daeSBarry Smith   viewer->data = (void*) e;
177a297a907SKarl Rupp 
178bdf89e91SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)viewer,"PetscViewerFileSetName_C",PetscViewerFileSetName_Matlab);CHKERRQ(ierr);
179bdf89e91SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)viewer,"PetscViewerFileSetMode_C",PetscViewerFileSetMode_Matlab);CHKERRQ(ierr);
180a297a907SKarl Rupp 
1815c6c1daeSBarry Smith   viewer->ops->destroy = PetscViewerDestroy_Matlab;
1825c6c1daeSBarry Smith   PetscFunctionReturn(0);
1835c6c1daeSBarry Smith }
1845c6c1daeSBarry Smith 
1855c6c1daeSBarry Smith /*@C
1865c6c1daeSBarry Smith    PetscViewerMatlabOpen - Opens a Matlab .mat file for output
1875c6c1daeSBarry Smith 
1885c6c1daeSBarry Smith    Collective on MPI_Comm
1895c6c1daeSBarry Smith 
1905c6c1daeSBarry Smith    Input Parameters:
1915c6c1daeSBarry Smith +  comm - MPI communicator
1925c6c1daeSBarry Smith .  name - name of file
1935c6c1daeSBarry Smith -  type - type of file
1945c6c1daeSBarry Smith $    FILE_MODE_WRITE - create new file for MATLAB output
1955c6c1daeSBarry Smith $    FILE_MODE_READ - open existing file for MATLAB input
1965c6c1daeSBarry Smith $    FILE_MODE_WRITE - open existing file for MATLAB output
1975c6c1daeSBarry Smith 
1985c6c1daeSBarry Smith    Output Parameter:
1995c6c1daeSBarry Smith .  binv - PetscViewer for MATLAB output to use with the specified file
2005c6c1daeSBarry Smith 
2015c6c1daeSBarry Smith    Level: beginner
2025c6c1daeSBarry Smith 
2035c6c1daeSBarry Smith    Note: This PetscViewer should be destroyed with PetscViewerDestroy().
2045c6c1daeSBarry Smith 
2055c6c1daeSBarry Smith     For writing files it only opens the file on processor 0 in the communicator.
2065c6c1daeSBarry Smith 
2075c6c1daeSBarry Smith      This only saves Vecs it cannot be used to save Mats. We recommend using the PETSCVIEWERBINARY to save objects to be loaded into MATLAB
2085c6c1daeSBarry Smith      instead of this routine.
2095c6c1daeSBarry Smith 
2105c6c1daeSBarry Smith    Concepts: MATLAB .mat files
2115c6c1daeSBarry Smith    Concepts: PetscViewerMatlab^creating
2125c6c1daeSBarry Smith 
2136a9046bcSBarry Smith .seealso: PetscViewerASCIIOpen(), PetscViewerPushFormat(), PetscViewerDestroy(), PETSCVIEWERBINARY, PetscViewerBinaryOpen()
2145c6c1daeSBarry Smith           VecView(), MatView(), VecLoad(), MatLoad()
2155c6c1daeSBarry Smith @*/
2165c6c1daeSBarry Smith PetscErrorCode  PetscViewerMatlabOpen(MPI_Comm comm,const char name[],PetscFileMode type,PetscViewer *binv)
2175c6c1daeSBarry Smith {
2185c6c1daeSBarry Smith   PetscErrorCode ierr;
2195c6c1daeSBarry Smith 
2205c6c1daeSBarry Smith   PetscFunctionBegin;
2215c6c1daeSBarry Smith   ierr = PetscViewerCreate(comm,binv);CHKERRQ(ierr);
2225c6c1daeSBarry Smith   ierr = PetscViewerSetType(*binv,PETSCVIEWERMATLAB);CHKERRQ(ierr);
2235c6c1daeSBarry Smith   ierr = PetscViewerFileSetMode(*binv,type);CHKERRQ(ierr);
2245c6c1daeSBarry Smith   ierr = PetscViewerFileSetName(*binv,name);CHKERRQ(ierr);
2255c6c1daeSBarry Smith   PetscFunctionReturn(0);
2265c6c1daeSBarry Smith }
2275c6c1daeSBarry Smith 
2285c6c1daeSBarry Smith static PetscMPIInt Petsc_Viewer_Matlab_keyval = MPI_KEYVAL_INVALID;
2295c6c1daeSBarry Smith 
2305c6c1daeSBarry Smith /*@C
2315c6c1daeSBarry Smith      PETSC_VIEWER_MATLAB_ - Creates a Matlab PetscViewer shared by all processors
2325c6c1daeSBarry Smith                      in a communicator.
2335c6c1daeSBarry Smith 
2345c6c1daeSBarry Smith      Collective on MPI_Comm
2355c6c1daeSBarry Smith 
2365c6c1daeSBarry Smith      Input Parameter:
2375c6c1daeSBarry Smith .    comm - the MPI communicator to share the Matlab PetscViewer
2385c6c1daeSBarry Smith 
2395c6c1daeSBarry Smith      Level: intermediate
2405c6c1daeSBarry Smith 
2415c6c1daeSBarry Smith    Options Database Keys:
242e1bc860dSBarry Smith .    -viewer_matlab_filename <name>
2435c6c1daeSBarry Smith 
2445c6c1daeSBarry Smith    Environmental variables:
245e1bc860dSBarry Smith .   PETSC_VIEWER_MATLAB_FILENAME
2465c6c1daeSBarry Smith 
2475c6c1daeSBarry Smith      Notes:
2485c6c1daeSBarry Smith      Unlike almost all other PETSc routines, PETSC_VIEWER_MATLAB_ does not return
2495c6c1daeSBarry Smith      an error code.  The matlab PetscViewer is usually used in the form
2505c6c1daeSBarry Smith $       XXXView(XXX object,PETSC_VIEWER_MATLAB_(comm));
2515c6c1daeSBarry Smith 
2525c6c1daeSBarry Smith      Use PETSC_VIEWER_SOCKET_() or PetscViewerSocketOpen() to communicator with an interactive MATLAB session.
2535c6c1daeSBarry Smith 
2545c6c1daeSBarry Smith .seealso: PETSC_VIEWER_MATLAB_WORLD, PETSC_VIEWER_MATLAB_SELF, PetscViewerMatlabOpen(), PetscViewerCreate(),
2555c6c1daeSBarry Smith           PetscViewerDestroy()
2565c6c1daeSBarry Smith @*/
2575c6c1daeSBarry Smith PetscViewer  PETSC_VIEWER_MATLAB_(MPI_Comm comm)
2585c6c1daeSBarry Smith {
2595c6c1daeSBarry Smith   PetscErrorCode ierr;
2605c6c1daeSBarry Smith   PetscBool      flg;
2615c6c1daeSBarry Smith   PetscViewer    viewer;
2625c6c1daeSBarry Smith   char           fname[PETSC_MAX_PATH_LEN];
2635c6c1daeSBarry Smith   MPI_Comm       ncomm;
2645c6c1daeSBarry Smith 
2655c6c1daeSBarry Smith   PetscFunctionBegin;
266efca3c55SSatish Balay   ierr = PetscCommDuplicate(comm,&ncomm,NULL);if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2675c6c1daeSBarry Smith   if (Petsc_Viewer_Matlab_keyval == MPI_KEYVAL_INVALID) {
268*12801b39SBarry Smith     ierr = MPI_Comm_create_keyval(MPI_COMM_NULL_COPY_FN,MPI_COMM_NULL_DELETE_FN,&Petsc_Viewer_Matlab_keyval,0);
269efca3c55SSatish Balay     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2705c6c1daeSBarry Smith   }
2715c6c1daeSBarry Smith   ierr = MPI_Attr_get(ncomm,Petsc_Viewer_Matlab_keyval,(void**)&viewer,(int*)&flg);
272efca3c55SSatish Balay   if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2735c6c1daeSBarry Smith   if (!flg) { /* PetscViewer not yet created */
2745c6c1daeSBarry Smith     ierr = PetscOptionsGetenv(ncomm,"PETSC_VIEWER_MATLAB_FILENAME",fname,PETSC_MAX_PATH_LEN,&flg);
275efca3c55SSatish Balay     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2765c6c1daeSBarry Smith     if (!flg) {
2775c6c1daeSBarry Smith       ierr = PetscStrcpy(fname,"matlaboutput.mat");
278efca3c55SSatish Balay       if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2795c6c1daeSBarry Smith     }
2805c6c1daeSBarry Smith     ierr = PetscViewerMatlabOpen(ncomm,fname,FILE_MODE_WRITE,&viewer);
281efca3c55SSatish Balay     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2825c6c1daeSBarry Smith     ierr = PetscObjectRegisterDestroy((PetscObject)viewer);
283efca3c55SSatish Balay     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2845c6c1daeSBarry Smith     ierr = MPI_Attr_put(ncomm,Petsc_Viewer_Matlab_keyval,(void*)viewer);
285efca3c55SSatish Balay     if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2865c6c1daeSBarry Smith   }
2875c6c1daeSBarry Smith   ierr = PetscCommDestroy(&ncomm);
288efca3c55SSatish Balay   if (ierr) {PetscError(PETSC_COMM_SELF,__LINE__,"PETSC_VIEWER_MATLAB_",__FILE__,PETSC_ERR_PLIB,PETSC_ERROR_INITIAL," ");PetscFunctionReturn(0);}
2895c6c1daeSBarry Smith   PetscFunctionReturn(viewer);
2905c6c1daeSBarry Smith }
2915c6c1daeSBarry Smith 
2925c6c1daeSBarry Smith 
2935c6c1daeSBarry Smith 
2945c6c1daeSBarry Smith 
2955c6c1daeSBarry Smith 
296