save plots (octave)


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. % saves the plot to a png file
  2. gset terminal png;
  3. gset output "filename.png";
  4.  
  5. replot; % or plot
  6.  
  7. % then:
  8. closeplot

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.