xref: /petsc/src/sys/classes/viewer/impls/matlab/vmatlab.c (revision ac0167776a393c8e8dc4f5497162fd3c334a3bdd)
15c6c1daeSBarry Smith 
2af0996ceSBarry Smith #include <petsc/private/viewerimpl.h>
35c6c1daeSBarry Smith #include <mat.h>
45c6c1daeSBarry Smith 
55c6c1daeSBarry Smith typedef struct {
65c6c1daeSBarry Smith   MATFile      *ep;
75c6c1daeSBarry Smith   PetscMPIInt   rank;
85c6c1daeSBarry Smith   PetscFileMode btype;
95c6c1daeSBarry Smith } PetscViewer_Matlab;
105c6c1daeSBarry Smith 
115c6c1daeSBarry Smith /*@C
12811af0c4SBarry Smith     PetscViewerMatlabPutArray - Puts an array into the `PETSCVIEWERMATLAB` viewer.
135c6c1daeSBarry Smith 
143f423023SBarry Smith       Not collective: only processor zero saves `array`
155c6c1daeSBarry Smith 
165c6c1daeSBarry Smith     Input Parameters:
175c6c1daeSBarry Smith +    mfile - the viewer
183f423023SBarry Smith .    m,n - the dimensions of `array`
195c6c1daeSBarry Smith .    array - the array (represented in one dimension)
203f423023SBarry Smith -    name - the MATLAB name of `array`
215c6c1daeSBarry Smith 
225c6c1daeSBarry Smith    Level: advanced
235c6c1daeSBarry Smith 
24811af0c4SBarry Smith     Note:
253f423023SBarry Smith     Only writes `array` values on processor 0.
265c6c1daeSBarry Smith 
27811af0c4SBarry Smith .seealso: `PETSCVIEWERMATLAB`, `PetscViewerMatlabGetArray()`
285c6c1daeSBarry Smith @*/
29d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerMatlabPutArray(PetscViewer mfile, int m, int n, const PetscScalar *array, const char *name)
30d71ae5a4SJacob Faibussowitsch {
312cb5e1ccSBarry Smith   PetscViewer_Matlab *ml;
325c6c1daeSBarry Smith   mxArray            *mat;
335c6c1daeSBarry Smith 
345c6c1daeSBarry Smith   PetscFunctionBegin;
3528b400f6SJacob Faibussowitsch   PetscCheck(mfile, PETSC_COMM_SELF, PETSC_ERR_ARG_NULL, "Null argument: probably PETSC_VIEWER_MATLAB_() failed");
362cb5e1ccSBarry Smith   ml = (PetscViewer_Matlab *)mfile->data;
375c6c1daeSBarry Smith   if (!ml->rank) {
389566063dSJacob Faibussowitsch     PetscCall(PetscInfo(mfile, "Putting MATLAB array %s\n", name));
395c6c1daeSBarry Smith #if !defined(PETSC_USE_COMPLEX)
405c6c1daeSBarry Smith     mat = mxCreateDoubleMatrix(m, n, mxREAL);
415c6c1daeSBarry Smith #else
425c6c1daeSBarry Smith     mat = mxCreateDoubleMatrix(m, n, mxCOMPLEX);
435c6c1daeSBarry Smith #endif
449566063dSJacob Faibussowitsch     PetscCall(PetscArraycpy(mxGetPr(mat), array, m * n));
455c6c1daeSBarry Smith     matPutVariable(ml->ep, name, mat);
465c6c1daeSBarry Smith 
479566063dSJacob Faibussowitsch     PetscCall(PetscInfo(mfile, "Put MATLAB array %s\n", name));
485c6c1daeSBarry Smith   }
493ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
505c6c1daeSBarry Smith }
515c6c1daeSBarry Smith 
52d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerMatlabPutVariable(PetscViewer viewer, const char *name, void *mat)
53d71ae5a4SJacob Faibussowitsch {
54a297a907SKarl Rupp   PetscViewer_Matlab *ml = (PetscViewer_Matlab *)viewer->data;
555c6c1daeSBarry Smith 
565c6c1daeSBarry Smith   PetscFunctionBegin;
575c6c1daeSBarry Smith   matPutVariable(ml->ep, name, (mxArray *)mat);
583ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
595c6c1daeSBarry Smith }
605c6c1daeSBarry Smith 
615c6c1daeSBarry Smith /*@C
62811af0c4SBarry Smith     PetscViewerMatlabGetArray - Gets a variable from a `PETSCVIEWERMATLAB` viewer into an array
635c6c1daeSBarry Smith 
645c6c1daeSBarry Smith     Not Collective; only processor zero reads in the array
655c6c1daeSBarry Smith 
665c6c1daeSBarry Smith     Input Parameters:
675c6c1daeSBarry Smith +    mfile - the MATLAB file viewer
683f423023SBarry Smith .    m,n - the dimensions of `array`
695c6c1daeSBarry Smith .    array - the array (represented in one dimension)
703f423023SBarry Smith -    name - the MATLAB name of `array`
715c6c1daeSBarry Smith 
725c6c1daeSBarry Smith    Level: advanced
735c6c1daeSBarry Smith 
74811af0c4SBarry Smith     Note:
753f423023SBarry Smith     Only reads in `array` values on processor 0.
765c6c1daeSBarry Smith 
77811af0c4SBarry Smith .seealso: `PETSCVIEWERMATLAB`, `PetscViewerMatlabPutArray()`
785c6c1daeSBarry Smith @*/
79d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerMatlabGetArray(PetscViewer mfile, int m, int n, PetscScalar *array, const char *name)
80d71ae5a4SJacob Faibussowitsch {
812cb5e1ccSBarry Smith   PetscViewer_Matlab *ml;
825c6c1daeSBarry Smith   mxArray            *mat;
835c6c1daeSBarry Smith 
845c6c1daeSBarry Smith   PetscFunctionBegin;
8528b400f6SJacob Faibussowitsch   PetscCheck(mfile, PETSC_COMM_SELF, PETSC_ERR_ARG_NULL, "Null argument: probably PETSC_VIEWER_MATLAB_() failed");
862cb5e1ccSBarry Smith   ml = (PetscViewer_Matlab *)mfile->data;
875c6c1daeSBarry Smith   if (!ml->rank) {
889566063dSJacob Faibussowitsch     PetscCall(PetscInfo(mfile, "Getting MATLAB array %s\n", name));
895c6c1daeSBarry Smith     mat = matGetVariable(ml->ep, name);
9028b400f6SJacob Faibussowitsch     PetscCheck(mat, PETSC_COMM_SELF, PETSC_ERR_LIB, "Unable to get array %s from matlab", name);
919566063dSJacob Faibussowitsch     PetscCall(PetscArraycpy(array, mxGetPr(mat), m * n));
929566063dSJacob Faibussowitsch     PetscCall(PetscInfo(mfile, "Got MATLAB array %s\n", name));
935c6c1daeSBarry Smith   }
943ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
955c6c1daeSBarry Smith }
965c6c1daeSBarry Smith 
97d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerFileSetMode_Matlab(PetscViewer viewer, PetscFileMode type)
98d71ae5a4SJacob Faibussowitsch {
995c6c1daeSBarry Smith   PetscViewer_Matlab *vmatlab = (PetscViewer_Matlab *)viewer->data;
1005c6c1daeSBarry Smith 
1015c6c1daeSBarry Smith   PetscFunctionBegin;
1025c6c1daeSBarry Smith   vmatlab->btype = type;
1033ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1045c6c1daeSBarry Smith }
1055c6c1daeSBarry Smith 
1065c6c1daeSBarry Smith /*
1075c6c1daeSBarry Smith         Actually opens the file
1085c6c1daeSBarry Smith */
109d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerFileSetName_Matlab(PetscViewer viewer, const char name[])
110d71ae5a4SJacob Faibussowitsch {
1115c6c1daeSBarry Smith   PetscViewer_Matlab *vmatlab = (PetscViewer_Matlab *)viewer->data;
1125c6c1daeSBarry Smith   PetscFileMode       type    = vmatlab->btype;
1135c6c1daeSBarry Smith 
1145c6c1daeSBarry Smith   PetscFunctionBegin;
115cc73adaaSBarry Smith   PetscCheck(type != (PetscFileMode)-1, PETSC_COMM_SELF, PETSC_ERR_ORDER, "Must call PetscViewerFileSetMode() before PetscViewerFileSetName()");
1165c6c1daeSBarry Smith   if (vmatlab->ep) matClose(vmatlab->ep);
1175c6c1daeSBarry Smith 
1185c6c1daeSBarry Smith   /* only first processor opens file */
1195c6c1daeSBarry Smith   if (!vmatlab->rank) {
120a297a907SKarl Rupp     if (type == FILE_MODE_READ) vmatlab->ep = matOpen(name, "r");
1217e4fd573SVaclav Hapla     else if (type == FILE_MODE_WRITE) vmatlab->ep = matOpen(name, "w");
122f7d195e4SLawrence Mitchell     else {
123f7d195e4SLawrence Mitchell       PetscCheck(type != FILE_MODE_UNDEFINED, PetscObjectComm((PetscObject)viewer), PETSC_ERR_ORDER, "Must call PetscViewerFileSetMode() before PetscViewerFileSetName()");
124f7d195e4SLawrence Mitchell       SETERRQ(PetscObjectComm((PetscObject)viewer), PETSC_ERR_SUP, "Unsupported file mode %s", PetscFileModes[type]);
125f7d195e4SLawrence Mitchell     }
1265c6c1daeSBarry Smith   }
1273ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1285c6c1daeSBarry Smith }
1295c6c1daeSBarry Smith 
130d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerDestroy_Matlab(PetscViewer v)
131d71ae5a4SJacob Faibussowitsch {
1325c6c1daeSBarry Smith   PetscViewer_Matlab *vf = (PetscViewer_Matlab *)v->data;
1335c6c1daeSBarry Smith 
1345c6c1daeSBarry Smith   PetscFunctionBegin;
1355c6c1daeSBarry Smith   if (vf->ep) matClose(vf->ep);
1369566063dSJacob Faibussowitsch   PetscCall(PetscFree(vf));
1372e956fe4SStefano Zampini   PetscCall(PetscObjectComposeFunction((PetscObject)v, "PetscViewerFileSetName_C", NULL));
1382e956fe4SStefano Zampini   PetscCall(PetscObjectComposeFunction((PetscObject)v, "PetscViewerFileSetMode_C", NULL));
1393ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1405c6c1daeSBarry Smith }
1415c6c1daeSBarry Smith 
1428556b5ebSBarry Smith /*MC
1438556b5ebSBarry Smith    PETSCVIEWERMATLAB - A viewer that saves the variables into a MATLAB .mat file that may be read into MATLAB
1448556b5ebSBarry Smith        with load('filename').
1458556b5ebSBarry Smith 
1468556b5ebSBarry Smith    Level: intermediate
1478556b5ebSBarry Smith 
148b0f901b8SJose E. Roman        Notes:
149b0f901b8SJose E. Roman              Currently can only save PETSc vectors to .mat files, not matrices (use the `PETSCVIEWERBINARY` and
1508556b5ebSBarry Smith              ${PETSC_DIR}/share/petsc/matlab/PetscBinaryRead.m to read matrices into MATLAB).
1518556b5ebSBarry Smith 
152811af0c4SBarry Smith              For parallel vectors obtained with `DMCreateGlobalVector()` or `DMGetGlobalVector()` the vectors are saved to
153811af0c4SBarry Smith              the .mat file in natural ordering. You can use DMView() to save the `DMDA` information to the .mat file
154b0f901b8SJose E. Roman              the fields in the MATLAB loaded da variable give the array dimensions so you can reshape the MATLAB
1558556b5ebSBarry Smith              vector to the same multidimensional shape as it had in PETSc for plotting etc. For example,
1568556b5ebSBarry Smith 
157b0f901b8SJose E. Roman              In your PETSc C/C++ code (assuming a two dimensional `DMDA` with one degree of freedom per node)
158b0f901b8SJose E. Roman .vb
159b0f901b8SJose E. Roman                 PetscObjectSetName((PetscObject)x,"x");
160b0f901b8SJose E. Roman                 VecView(x,PETSC_VIEWER_MATLAB_WORLD);
161b0f901b8SJose E. Roman                 PetscObjectSetName((PetscObject)da,"da");
162b0f901b8SJose E. Roman                 DMView(x,PETSC_VIEWER_MATLAB_WORLD);
163b0f901b8SJose E. Roman .ve
164b0f901b8SJose E. Roman              Then from MATLAB
165b0f901b8SJose E. Roman .vb
166b0f901b8SJose E. Roman                 load('matlaboutput.mat')   % matlaboutput.mat is the default filename
167b0f901b8SJose E. Roman                 xnew = zeros(da.n,da.m);
168b0f901b8SJose E. Roman                 xnew(:) = x;    % reshape one dimensional vector back to two dimensions
169b0f901b8SJose E. Roman .ve
1708556b5ebSBarry Smith 
1718556b5ebSBarry Smith               If you wish to put the same variable into the .mat file several times you need to give it a new
1728556b5ebSBarry Smith               name before each call to view.
1738556b5ebSBarry Smith 
174811af0c4SBarry Smith               Use `PetscViewerMatlabPutArray()` to just put an array of doubles into the .mat file
1758556b5ebSBarry Smith 
176c2e3fba1SPatrick Sanan .seealso: `PETSC_VIEWER_MATLAB_()`, `PETSC_VIEWER_MATLAB_SELF`, `PETSC_VIEWER_MATLAB_WORLD`, `PetscViewerCreate()`,
177db781477SPatrick Sanan           `PetscViewerMatlabOpen()`, `VecView()`, `DMView()`, `PetscViewerMatlabPutArray()`, `PETSCVIEWERBINARY`, `PETSCVIEWERASCII`, `PETSCVIEWERDRAW`,
178811af0c4SBarry Smith           `PETSC_VIEWER_STDOUT_()`, `PetscViewerFileSetName()`, `PetscViewerFileSetMode()`, `PetscViewerFormat`, `PetscMatlabEngine`
1798556b5ebSBarry Smith M*/
180d71ae5a4SJacob Faibussowitsch PETSC_EXTERN PetscErrorCode PetscViewerCreate_Matlab(PetscViewer viewer)
181d71ae5a4SJacob Faibussowitsch {
1825c6c1daeSBarry Smith   PetscViewer_Matlab *e;
1835c6c1daeSBarry Smith 
1845c6c1daeSBarry Smith   PetscFunctionBegin;
1854dfa11a4SJacob Faibussowitsch   PetscCall(PetscNew(&e));
1869566063dSJacob Faibussowitsch   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)viewer), &e->rank));
1877e4fd573SVaclav Hapla   e->btype     = FILE_MODE_UNDEFINED;
1885c6c1daeSBarry Smith   viewer->data = (void *)e;
189a297a907SKarl Rupp 
1909566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)viewer, "PetscViewerFileSetName_C", PetscViewerFileSetName_Matlab));
1919566063dSJacob Faibussowitsch   PetscCall(PetscObjectComposeFunction((PetscObject)viewer, "PetscViewerFileSetMode_C", PetscViewerFileSetMode_Matlab));
192a297a907SKarl Rupp 
1935c6c1daeSBarry Smith   viewer->ops->destroy = PetscViewerDestroy_Matlab;
1943ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
1955c6c1daeSBarry Smith }
1965c6c1daeSBarry Smith 
1975c6c1daeSBarry Smith /*@C
1985c6c1daeSBarry Smith    PetscViewerMatlabOpen - Opens a Matlab .mat file for output
1995c6c1daeSBarry Smith 
200d083f849SBarry Smith    Collective
2015c6c1daeSBarry Smith 
2025c6c1daeSBarry Smith    Input Parameters:
2035c6c1daeSBarry Smith +  comm - MPI communicator
2045c6c1daeSBarry Smith .  name - name of file
2055c6c1daeSBarry Smith -  type - type of file
2063f423023SBarry Smith .vb
2073f423023SBarry Smith     FILE_MODE_WRITE - create new file for MATLAB output
2083f423023SBarry Smith     FILE_MODE_READ - open existing file for MATLAB input
2093f423023SBarry Smith     FILE_MODE_WRITE - open existing file for MATLAB output
2103f423023SBarry Smith .ve
2115c6c1daeSBarry Smith 
2125c6c1daeSBarry Smith    Output Parameter:
2135c6c1daeSBarry Smith .  binv - PetscViewer for MATLAB output to use with the specified file
2145c6c1daeSBarry Smith 
2155c6c1daeSBarry Smith    Level: beginner
2165c6c1daeSBarry Smith 
217811af0c4SBarry Smith    Notes:
218811af0c4SBarry Smith    This `PetscViewer` should be destroyed with `PetscViewerDestroy()`.
2195c6c1daeSBarry Smith 
2205c6c1daeSBarry Smith    For writing files it only opens the file on processor 0 in the communicator.
2215c6c1daeSBarry Smith 
222811af0c4SBarry Smith    This only saves `Vec`s it cannot be used to save `Mat`s. We recommend using the `PETSCVIEWERBINARY` to save objects to be loaded into MATLAB
2235c6c1daeSBarry Smith    instead of this routine.
2245c6c1daeSBarry Smith 
2253f423023SBarry Smith    PETSc must be configured with the option `--with-matlab` for this functionality
226750b007cSBarry Smith 
227811af0c4SBarry Smith .seealso: `PETSCVIEWERMATLAB`, `PetscViewerASCIIOpen()`, `PetscViewerPushFormat()`, `PetscViewerDestroy()`, `PETSCVIEWERBINARY`, `PetscViewerBinaryOpen()`
228db781477SPatrick Sanan           `VecView()`, `MatView()`, `VecLoad()`, `MatLoad()`
2295c6c1daeSBarry Smith @*/
230d71ae5a4SJacob Faibussowitsch PetscErrorCode PetscViewerMatlabOpen(MPI_Comm comm, const char name[], PetscFileMode type, PetscViewer *binv)
231d71ae5a4SJacob Faibussowitsch {
2325c6c1daeSBarry Smith   PetscFunctionBegin;
2339566063dSJacob Faibussowitsch   PetscCall(PetscViewerCreate(comm, binv));
2349566063dSJacob Faibussowitsch   PetscCall(PetscViewerSetType(*binv, PETSCVIEWERMATLAB));
2359566063dSJacob Faibussowitsch   PetscCall(PetscViewerFileSetMode(*binv, type));
2369566063dSJacob Faibussowitsch   PetscCall(PetscViewerFileSetName(*binv, name));
2373ba16761SJacob Faibussowitsch   PetscFunctionReturn(PETSC_SUCCESS);
2385c6c1daeSBarry Smith }
2395c6c1daeSBarry Smith 
2405c6c1daeSBarry Smith static PetscMPIInt Petsc_Viewer_Matlab_keyval = MPI_KEYVAL_INVALID;
2415c6c1daeSBarry Smith 
2425c6c1daeSBarry Smith /*@C
243811af0c4SBarry Smith      PETSC_VIEWER_MATLAB_ - Creates a `PETSCVIEWERMATLAB` `PetscViewer` shared by all processors
2445c6c1daeSBarry Smith                      in a communicator.
2455c6c1daeSBarry Smith 
246d083f849SBarry Smith      Collective
2475c6c1daeSBarry Smith 
2485c6c1daeSBarry Smith      Input Parameter:
249811af0c4SBarry Smith .    comm - the MPI communicator to share the Matlab `PetscViewer`
250811af0c4SBarry Smith 
251811af0c4SBarry Smith    Options Database Key:
252811af0c4SBarry Smith .    -viewer_matlab_filename <name> - name of the Matlab file
253811af0c4SBarry Smith 
254811af0c4SBarry Smith    Environmental variable:
255811af0c4SBarry Smith .   `PETSC_VIEWER_MATLAB_FILENAME` - name of the Matlab file
2565c6c1daeSBarry Smith 
2575c6c1daeSBarry Smith      Level: intermediate
2585c6c1daeSBarry Smith 
259811af0c4SBarry Smith      Note:
260811af0c4SBarry Smith      Unlike almost all other PETSc routines, `PETSC_VIEWER_MATLAB_()` does not return
2615c6c1daeSBarry Smith      an error code.  The matlab PetscViewer is usually used in the form
2625c6c1daeSBarry Smith $       XXXView(XXX object,PETSC_VIEWER_MATLAB_(comm));
2635c6c1daeSBarry Smith 
264811af0c4SBarry Smith      Use `PETSC_VIEWER_SOCKET_()` or `PetscViewerSocketOpen()` to communicator with an interactive MATLAB session.
2655c6c1daeSBarry Smith 
266db781477SPatrick Sanan .seealso: `PETSC_VIEWER_MATLAB_WORLD`, `PETSC_VIEWER_MATLAB_SELF`, `PetscViewerMatlabOpen()`, `PetscViewerCreate()`,
267db781477SPatrick Sanan           `PetscViewerDestroy()`
2685c6c1daeSBarry Smith @*/
269d71ae5a4SJacob Faibussowitsch PetscViewer PETSC_VIEWER_MATLAB_(MPI_Comm comm)
270d71ae5a4SJacob Faibussowitsch {
2715c6c1daeSBarry Smith   PetscErrorCode ierr;
2725c6c1daeSBarry Smith   PetscBool      flg;
2735c6c1daeSBarry Smith   PetscViewer    viewer;
2745c6c1daeSBarry Smith   char           fname[PETSC_MAX_PATH_LEN];
2755c6c1daeSBarry Smith   MPI_Comm       ncomm;
2765c6c1daeSBarry Smith 
2775c6c1daeSBarry Smith   PetscFunctionBegin;
2789371c9d4SSatish Balay   ierr = PetscCommDuplicate(comm, &ncomm, NULL);
2799371c9d4SSatish Balay   if (ierr) {
2809371c9d4SSatish Balay     PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_INITIAL, " ");
281*ac016777SBarry Smith     PetscFunctionReturn(NULL);
2829371c9d4SSatish Balay   }
2835c6c1daeSBarry Smith   if (Petsc_Viewer_Matlab_keyval == MPI_KEYVAL_INVALID) {
28412801b39SBarry Smith     ierr = MPI_Comm_create_keyval(MPI_COMM_NULL_COPY_FN, MPI_COMM_NULL_DELETE_FN, &Petsc_Viewer_Matlab_keyval, 0);
2859371c9d4SSatish Balay     if (ierr) {
2869371c9d4SSatish Balay       PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_INITIAL, " ");
2879371c9d4SSatish Balay       PetscFunctionReturn(NULL);
2889371c9d4SSatish Balay     }
2895c6c1daeSBarry Smith   }
29047435625SJed Brown   ierr = MPI_Comm_get_attr(ncomm, Petsc_Viewer_Matlab_keyval, (void **)&viewer, (int *)&flg);
2919371c9d4SSatish Balay   if (ierr) {
2929371c9d4SSatish Balay     PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_INITIAL, " ");
2939371c9d4SSatish Balay     PetscFunctionReturn(NULL);
2949371c9d4SSatish Balay   }
2955c6c1daeSBarry Smith   if (!flg) { /* PetscViewer not yet created */
2965c6c1daeSBarry Smith     ierr = PetscOptionsGetenv(ncomm, "PETSC_VIEWER_MATLAB_FILENAME", fname, PETSC_MAX_PATH_LEN, &flg);
2979371c9d4SSatish Balay     if (ierr) {
2989371c9d4SSatish Balay       PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_REPEAT, " ");
2999371c9d4SSatish Balay       PetscFunctionReturn(NULL);
3009371c9d4SSatish Balay     }
3015c6c1daeSBarry Smith     if (!flg) {
302c6a7a370SJeremy L Thompson       ierr = PetscStrncpy(fname, "matlaboutput.mat", sizeof(fname));
3039371c9d4SSatish Balay       if (ierr) {
3049371c9d4SSatish Balay         PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_REPEAT, " ");
3059371c9d4SSatish Balay         PetscFunctionReturn(NULL);
3069371c9d4SSatish Balay       }
3075c6c1daeSBarry Smith     }
3085c6c1daeSBarry Smith     ierr = PetscViewerMatlabOpen(ncomm, fname, FILE_MODE_WRITE, &viewer);
3099371c9d4SSatish Balay     if (ierr) {
3109371c9d4SSatish Balay       PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_REPEAT, " ");
3119371c9d4SSatish Balay       PetscFunctionReturn(NULL);
3129371c9d4SSatish Balay     }
3135c6c1daeSBarry Smith     ierr = PetscObjectRegisterDestroy((PetscObject)viewer);
3149371c9d4SSatish Balay     if (ierr) {
3159371c9d4SSatish Balay       PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_REPEAT, " ");
3169371c9d4SSatish Balay       PetscFunctionReturn(NULL);
3179371c9d4SSatish Balay     }
31847435625SJed Brown     ierr = MPI_Comm_set_attr(ncomm, Petsc_Viewer_Matlab_keyval, (void *)viewer);
3199371c9d4SSatish Balay     if (ierr) {
3209371c9d4SSatish Balay       PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_INITIAL, " ");
3219371c9d4SSatish Balay       PetscFunctionReturn(NULL);
3229371c9d4SSatish Balay     }
3235c6c1daeSBarry Smith   }
3245c6c1daeSBarry Smith   ierr = PetscCommDestroy(&ncomm);
3259371c9d4SSatish Balay   if (ierr) {
3269371c9d4SSatish Balay     PetscError(PETSC_COMM_SELF, __LINE__, "PETSC_VIEWER_MATLAB_", __FILE__, PETSC_ERR_PLIB, PETSC_ERROR_REPEAT, " ");
3279371c9d4SSatish Balay     PetscFunctionReturn(NULL);
3289371c9d4SSatish Balay   }
3295c6c1daeSBarry Smith   PetscFunctionReturn(viewer);
3305c6c1daeSBarry Smith }
331