How do I graph (x,y) for the following information:
x[1]=10
x[2]=20
x[3]=30
x[4]=40
x[5]=50
x[6]=60
and so on
and
y[n]=(x[n]+x[n-1])*1/2
y[1]=(10+0)*1/2=5
y[2]=(20+10)*1/2=15

 채택된 답변

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 11월 13일

0 개 추천

solution:
n=10;
x=10:n:60;
y=(x+(x-n))*1/2;
figure;
plot(x,y,'r*-')

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by