フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

2 ビュー (過去 30 日間)
Kompella
Kompella 2013 年 6 月 7 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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 件のコメント
Image Analyst
Image Analyst 2013 年 6 月 8 日
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 2013 年 6 月 8 日
編集済み: Kompella 2013 年 6 月 8 日
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

回答 (1 件)

Image Analyst
Image Analyst 2013 年 6 月 8 日
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/

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by