<div dir="ltr">Yes, it works now. Thanks!<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Jun 28, 2013 at 6:16 AM, Barry Smith <span dir="ltr"><<a href="mailto:bsmith@mcs.anl.gov" target="_blank">bsmith@mcs.anl.gov</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
  Bishesh,<br>
<br>
    Thanks for reporting this problem. I did not fix this example when removing PetscViewerBinaryMatlabOpen() nor did I test it well before the release.  I have updated the example and made other needed changes to PETSc code in the maint branch of the PETSc repository.   All the fixes will in the next patch release of PETSc 3.4 If you would like to try the fixed code now you can follow the instructions at <a href="http://www.mcs.anl.gov/petsc/download/index.html" target="_blank">http://www.mcs.anl.gov/petsc/download/index.html</a> and follow the instructions that say use<br>

<br>
git clone -b maint <a href="https://bitbucket.org/petsc/petsc" target="_blank">https://bitbucket.org/petsc/petsc</a> petsc<br>
<br>
with this copy ex7.c should work correctly and bin/matlab/PetscReadBinaryMatlab.m should read the data into Matlab.<br>
<br>
  Please let us know of any difficulties.<br>
<span class="HOEnZb"><font color="#888888"><br>
   Barry<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
<br>
<br>
<br>
On Jun 26, 2013, at 8:44 AM, Bishesh Khanal <<a href="mailto:bisheshkh@gmail.com">bisheshkh@gmail.com</a>> wrote:<br>
<br>
> Dear all,<br>
> I'm just starting to learn using Petsc. I was trying the example (../src/dm/examples/tutorials/ex7.c)<br>
> for petsc-3.4.1 . However it seems this file has not been updated for the 3.4.1 version since it uses<br>
> PetscViewerBinaryMatlabOpen() and friends which have been removed from this newer version.<br>
> Now I tried to change them but I have some questions:<br>
><br>
> The lines I wanted to change are the ones that use following funcitons:<br>
> 1. PetscViewerBinaryMatlabOpen(PETSC_COMM_WORLD,params->filename,&viewer)<br>
> 2. PetscViewerBinaryMatlabOutputBag(viewer,"params",bag)<br>
> 3. PetscViewerBinaryMatlabOutputVecDA(viewer,"da1",global,da)<br>
><br>
> For 1, it seems I can change it with:<br>
> PetscViewerBinaryOpen(PETSC_COMM_WORLD,params->filename,FILE_MODE_WRITE,&viewer)<br>
> PetscViewerSetFormat(viewer,PETSC_VIEWER_BINARY_MATLAB)<br>
><br>
> Now, for the 2 and 3 I thought I need to use:<br>
> PetscViewerBinaryWrite(PetscViewer viewer,void *data,PetscInt count,PetscDataType dtype,PetscBool istemp)<br>
> but I'm not sure what exactly to provide as argument for count and dtype to have the same functionality as intended in ex7.c<br>
> I tried (for 2) using:<br>
> ierr = PetscViewerBinaryWrite(viewer,&bag,1,PETSC_OBJECT,PETSC_FALSE);<br>
> but it results in an error when running the executable.<br>
> How should I count the no. of items for count variable in this case for the bag object ?<br>
> And what should be the dtype ?<br>
><br>
> Thanks,<br>
> Bishesh<br>
<br>
</div></div></blockquote></div><br></div>