Why won't my plot graph a line?
이전 댓글 표시
for x = linspace(1,2,10)
new = 10*x
end
plot(x,new,'b*-')
채택된 답변
추가 답변 (1개)
Walter Roberson
2021년 12월 2일
0 개 추천
A for loop assigns the loop control variable each column of the expression in turn. After the loop it has the last value it was assigned.
So after the loop your x is scalar, not the entire list of values.
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
