i got an error when i run this code ?

조회 수: 1 (최근 30일)
mohamed
mohamed 2013년 3월 14일
x=(1:100); for k=1:5 y(:,k)=k*log(x); end plot(x,y)
the error is in the third line? i want to make a single plot for different values of k

채택된 답변

Andrei Bobrov
Andrei Bobrov 2013년 3월 14일
편집: Andrei Bobrov 2013년 3월 14일
k = 1:5;
x = 1:100;
y = k'*log(x);
plot(x,y);
  댓글 수: 2
mohamed
mohamed 2013년 3월 14일
you really got what i want but did you find the error in my code ??
Andrei Bobrov
Andrei Bobrov 2013년 3월 14일
see Wayne's answer

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

추가 답변 (1개)

Wayne King
Wayne King 2013년 3월 14일
편집: Wayne King 2013년 3월 14일
x=(1:100); for k=1:5 y(:,k)=k*log(x); end, plot(x,y)
You forgot a semicolon, or comma after end
or better yet:
x=(1:100);
for k=1:5
y(:,k)=k*log(x);
end
plot(x,y)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by