Making my answer show in matrix form
조회 수: 17 (최근 30일)
이전 댓글 표시
I have this code in a script and was trying to get the answer to come in a matrix form with all the coordsx in row1 and coord y in row 2 I keep getting answers for the x and y separately but need them in matrix form.
Thanks in advanc
댓글 수: 0
답변 (2개)
KALYAN ACHARJYA
2020년 2월 16일
편집: KALYAN ACHARJYA
2020년 2월 16일
for n=1:7
coordsX(n)= ; % Semicolon here
coordsY(n)= ; % Semicolon here
end
coordsX
coordsY
댓글 수: 2
fred ssemwogerere
2020년 2월 16일
편집: fred ssemwogerere
2020년 2월 16일
% Try this
% preallocate an array "coords"
coords=zeros(2,7);
for n=1:7
coords(1,n)=-(xfactor*trav(n,4)+(dxdy(n,1)); % x-coordinates appear in row 1 of an array: "coords"
coords(2,n)=-(yfactor*trav(n,4)+(dxdy(n,2)); % y-coordinates appear in row 2 of the same array: "coords"
end
댓글 수: 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!