how to store all the results in a table with index

조회 수: 4 (최근 30일)
bil bbil
bil bbil 2014년 3월 22일
댓글: Jan 2014년 3월 23일
hello for exmpl a=length(point);%are already stored in an array for i=1:a-2 for j=i+1:a-1 for k=j+1:a b =point(i,2)+point(j,1)+point(k,1); end end end how to store all the results in a table with 3point ( i(x,y) ,j(x,y),k(x,y))indice??
  댓글 수: 1
Jan
Jan 2014년 3월 22일
The code is not readable and I do not understand the question.

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2014년 3월 23일
I don't understand either. I don't think you need a table, though I applaud you for wanting to use this new (as of R2013b) variable type. I think a regular numerical array would be fine.
Are you trying to create a 3D variable called "b" where the x, y, and z indexes are taken from the "point" array and you just want to set it to 1 or something? Like
numberOfPoints = size(points, 1);
for l=1:numberOfPoints
row = points(k,1);
column = points(k, 2);
z = points(k,3);
b(row, column, z) = 1;
end
That's just a SWAG
Also, be aware that a=length(point) takes the longest dimension. Length() takes the longest dimension when you're using it on a multidimensional array. That's why it's safer to use size() so you know for sure what you're getting.
  댓글 수: 3
Image Analyst
Image Analyst 2014년 3월 23일
OK, in that kind of "round robin" type of situation then you would need 3 nested for loops. But we still don't know what your badly-named "b" is. See this:
Jan
Jan 2014년 3월 23일
@bil bbil: Please note, that neither "table" nor "points" is well defined here.
Please start with formatting your code in the question. Thanks.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by