X.coords = something?
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi,
I am trying to understand a code.. the following equation is in it:
y.coords{t} =(sorted_eig_vect(:,1:dimension(t)).*(ones(N,1)... *sqrt(sorted_eig_val(1:dimension(t)))'))';
what does the y.coords do exactly? This may be pretty basic but I really don't know the *.coords thing. Any help or insight to this would be great.
Thanks - K
댓글 수: 0
채택된 답변
Matt Fig
2011년 3월 30일
This creates a field in the structure y. This field is a cell array. Look at this:
Y.myfield = 2;
Y.yourfield = 3;
Y % Show the structure Y.
Y.ourfield{1} = magic(3);
Y.ourfield{2} = magic(4);
Y % Show the structure Y.
Now to access the values stored in the fields of the structure Y, use structure addressing:
R = Y.myfield
S = Y.yourfield
T = Y.ourfield{2}
For more information, search the documentation for structures. You could start here:
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Other Formats에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!