필터 지우기
필터 지우기

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
Sam Chak
Sam Chak 2022년 5월 11일
The info here teaches you how to save the figures in a folder

댓글을 달려면 로그인하십시오.

카테고리

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