how to plots these values?

1 次查看(过去 30 天)
Rakesh Roshan
Rakesh Roshan 2022-5-10
评论: Sam Chak 2022-5-11
S=[-0.0032 -0.0045. -0.0056]' F=[8 9 10] Figure Plot(F,S) #should be saved as 1.jpg Ax=gca Ax.YAxis.Exponent=0; Figure Plot( F,10.^S)#should be saved as 2.jpg Ax=gca Ax.YAxis.Exponent=0;
S=[-0.0032 -0.0045. -0.0056]'
F=[8 9 10]
Figure Plot(F,S) #should be saved as 1.jpg
Ax=gca
Ax.YAxis.Exponent=0;
Figure Plot( F,10.^S)#should be saved as 2.jpg
Ax=gca
Ax.YAxis.Exponent=0;
Like this i have many S values how to plot and save in specific particular folder as 1 and 2. 2018a version

回答(1 个)

Sam Chak
Sam Chak 2022-5-11
Hope this helps!
% Data
S = [-0.0032 -0.0045 -0.0056];
F = [8 9 10];
% creating plots
figure(1)
plot(F, S)
figure(2)
plot(F, 10.^S)
% saving the figures in jpg format
print -f1 -djpg -r300 fig1.jpg
print -f2 -djpg -r300 fig2.jpg
  2 个评论
Rakesh Roshan
Rakesh Roshan 2022-5-11
sir i have to save in a folder because i have many graphs to save

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by