how to plot a continuous graph in a loop

조회 수: 14 (최근 30일)
Sukhversha Luthra
Sukhversha Luthra 2018년 1월 29일
댓글: Sukhversha Luthra 2021년 11월 30일
for k=1:10;
x=5;
y=2*x-5*k*k*k
plot(k,y,'*');
hold on;
end
This program gives me a dotted graph.
however I wanted to get a regular(continuous) graph.
Please help me to find suitable command for that.

채택된 답변

VBBV
VBBV 2021년 11월 28일
for k=1:10;
x=5;
y(k)=2*x-5*k*k*k;
plot(1:k,y(1:k),'*'); % use the loop indices to plot in a loop
end
you can use the loop indices to plot the graph inside the loop

추가 답변 (1개)

Morteza Hajitabar Firuzjaei
Morteza Hajitabar Firuzjaei 2018년 1월 29일
you can make your vectors and plot your graph, like:
s = [1 1 1 1];
t = [2 4 5 3];
G = graph(s,t);
plot(G);
Mortrza Hajitabar Firuzjaei
  댓글 수: 1
Sukhversha Luthra
Sukhversha Luthra 2018년 1월 30일
but I need to get a graph for a loop in which k is known but 'y', that depends on 'k', gets its values in the loop itself

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by