InterviewSolution
Saved Bookmarks
| 1. |
How To Correctly Apply The Graphics Patches In Matlab? |
|
Answer» Open a LOCAL MACHINE window and type: xhost +ASHLAND # ADD the following code sequence just before the plot COMMAND that was giving you problems: figure; set(GCF,'renderer','zbuffer'); [s,w] = UNIX('echo $DISPLAY'); set(gcf,'XDisplay',w); Open a LOCAL MACHINE window and type: xhost +ashland # Add the following code sequence just before the plot command that was giving you problems: figure; set(gcf,'renderer','zbuffer'); [s,w] = unix('echo $DISPLAY'); set(gcf,'XDisplay',w); |
|