for loop does not plot all the plots

조회 수: 1 (최근 30일)
tomer polsky
tomer polsky 2022년 3월 9일
댓글: tomer polsky 2022년 3월 9일
I am trying to plot this code :
clc;clear all;close all;
n=3;
t=linspace(0,24*n,100e3*n);
y1=cos(t*(pi/3))+sin(t*(pi/4));
plot(t,y1);
hold on;
plot(24*1,y1(1*100e3),'*');
hold on;
plot(24*2,y1(2*100e3),'*');
hold on;
plot(24*3,y1(3*100e3),'*');
using for loop but for some reason I get only the last plot .
this is my code using for loop:
clc;clear all;close all;
n=3;
t=linspace(0,24*n,100e3*n);
y1=cos(t*(pi/3))+sin(t*(pi/4));
plot(t,y1)
hold on;
for i=1:n
hold on;
plot(24*n,y1(n*100e3),'*');
hold on
end
hold off
where is my problem ?

답변 (1개)

Torsten
Torsten 2022년 3월 9일
plot(24*i,y1(i*100e3),'*');
instead of
plot(24*n,y1(n*100e3),'*');
  댓글 수: 1
tomer polsky
tomer polsky 2022년 3월 9일
can't belive I did not notice it ... thank you very much !!!

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

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by