Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

To lain...saving 5 plots for each i in a loop

2 Ansichten (letzte 30 Tage)
Kompella
Kompella am 7 Jun. 2013
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
thank you lain. I got it right now. Sorry if I'm troubling you... I have another question. That is just for one plot. But for each value of i I have 5 plots. I tried using same h = plot( fitresult{1}, xData, yData );...but it is not working.This is wat matlab showed. An error.
Operands to the and && operators must be convertible to logical scalar values.
Error in saveas (line 64) while ~isempty(h) && ~isfigure(h)
I tried using h(1),h(2)...h(5). still it didn't work.
Please help me in doing that
  2 Kommentare
Image Analyst
Image Analyst am 8 Jun. 2013
That is not the full error message. saveas doesn't even show up on that line. Post the full error message - all the text in red.
Kompella
Kompella am 8 Jun. 2013
Bearbeitet: Kompella am 8 Jun. 2013
Operands to the | | and && operators must be convertible to logical scalar values.
Error in saveas (line 64)
while ~isempty(h) && ~isfigure(h)
Error in Experiment2 (line 151)
saveas(h,filename1)
this is what it showed.....
Here Experiment2 is the script file I have written. saveas is inbuilt script file.
This is how I used it....
% Plot fit with data.
h = plot( fitresult{1}, xData, yData );
legend( h, 'Heights1 vs. Centers1 with Weights1', 'N vs (J-H) Mag-1', 'Location', 'NorthEast' );
% Label axes
xlabel( 'Centers1' );
ylabel( 'Heights1' );
grid on
% Save this plot in C:\Users\SRINATH KOMPELLA\Documents\MATLAB\N vs (J-H) Mag-1.
filename2 = ['C:\Users\SRINATH KOMPELLA\Documents\MATLAB\N vs (J-H) Mag-1\SingleGaussian',num2str(d),'.fig'];
saveas(h,filename1).....this is the 151st line of my script

Antworten (1)

Image Analyst
Image Analyst am 8 Jun. 2013
I presume you've defined d and filename1 somewhere else (above) in the script? Are you sure you didn't mean filename2? What happens if you pass gca or gcf into saveas() instead of h?
Why not use export_fig() like most other people? ( http://www.mathworks.com/matlabcentral/fileexchange/

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by