How do i step from a bigger number to a smaller number ?
이전 댓글 표시
I want to create an array with two numbers like this;
Xprime = x1 : 0.01 : x2
but when i make x1 > x2 i get an empty array.
Is there a solution to this ?
채택된 답변
추가 답변 (2개)
Akshit Bagde
2021년 6월 30일
If you want to create a decrement array, you should use
Xprime = x1:-0.01:x2;
x = 2:-0.01:1
카테고리
도움말 센터 및 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!