How can I create vector for values in the range -π < θ < π ?
조회 수: 16 (최근 30일)
이전 댓글 표시
How can I create vector for values in the range -π < θ < π ?
댓글 수: 0
채택된 답변
Image Analyst
2016년 11월 27일
You can use linspace() to specify the number of elements you want:
margin = 0.0001; % Whatever you want. How close to pi you want to allow.
numElements= 1000; % Whatever you want. How many elements in your vector.
theta = linspace(-pi + margin, pi - margin, numElements);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!