Why is my plot not showing anything

조회 수: 3 (최근 30일)
Dami_2.0
Dami_2.0 2023년 6월 21일
댓글: Walter Roberson 2023년 6월 21일
W = [1:5] Z= [2:2:10] Plot(w,z)

채택된 답변

Richard Burnside
Richard Burnside 2023년 6월 21일
편집: Richard Burnside 2023년 6월 21일
Your plot command is using lower case w and your data is upper case W. Same for Z.
  댓글 수: 3
Dami_2.0
Dami_2.0 2023년 6월 21일
I've corrected that now
w= [1:5] z= [2:2:10] plot(w,z) It's still not plotting
Walter Roberson
Walter Roberson 2023년 6월 21일
w= [1:5]; z= [2:2:10]; plot(w,z)

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

추가 답변 (0개)

카테고리

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