Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

why my plot not being displayed?

조회 수: 1 (최근 30일)
lakshmi priya althuru
lakshmi priya althuru 2019년 7월 16일
마감: MATLAB Answer Bot 2021년 8월 20일
even when i run simple code like plot(x,y),my matlab is not displaying the figure.it is giving empty fig window.
  댓글 수: 2
madhan ravi
madhan ravi 2019년 7월 16일
can you show the relevant part of the code?
Walter Roberson
Walter Roberson 2019년 7월 16일
Do your x and y have more than one finite point? If x and y are scalar, by default MATLAB does not provide any markers for the points.

답변 (2개)

Jan
Jan 2019년 7월 16일
Try
plot(x, y, 'o')
to check, if x and/or y are scalars, which plot infinitesimal small dots only.

Star Strider
Star Strider 2019년 7월 16일
If your code involves array division, remember to use element-wise division: ./ rather than /.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by