Why should we write x(i,1)=cos(theta(1,i) in this format while using the for loop?
조회 수: 1 (최근 30일)
이전 댓글 표시
채택된 답변
KSSV
2021년 8월 17일
편집: KSSV
2021년 8월 17일
x = zeros(n+1,1) ;
for i=1:n+1
x(i)=R*cos(Theta_n(i)
You can very much write like you shown. But keep in mind that the variables should be vectors.
댓글 수: 4
KSSV
2021년 8월 17일
You can simply try and check the output your self.
When you try:
n = 3 ;
zeros(n+1)
You will get a matrix.
If you want to get a vector, you should specify:
n = 3 ;
zeros(n+1,1)
zeros(1,n+1)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!