i got an error when i run this code ?
조회 수: 1 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
채택된 답변
Andrei Bobrov
2013년 3월 14일
편집: Andrei Bobrov
2013년 3월 14일
k = 1:5;
x = 1:100;
y = k'*log(x);
plot(x,y);
추가 답변 (1개)
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)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!