Why is my linspace not working
조회 수: 24 (최근 30일)
이전 댓글 표시
x = linspace(2.5,5.8333,0.41667)
I enter this into mat lab, but for some reason this is what returns
1×0 empty double row vector
Im not sure why this is happening.
댓글 수: 0
답변 (2개)
Image Analyst
2020년 5월 14일
Cris explained it well. Perhaps you want this instead:
x = 2.5 : 0.41667 : 5.8333
댓글 수: 0
Cris LaPierre
2020년 5월 14일
What is your expected output?
The 3rd input is the number of points you want the resulting vector to have. As such it must be a positive integer. If you do not specify a 3rd input, you get 100 points. Read the documentation for linspace to learn more.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!