Create a structure from discrete column vectors or a 3 x n matrix composed of column vectors

12 views (last 30 days)
Hi
I'm trying to build a structure consisting of elements which are column vectors representing x, y, z points. So far, I have written the following code, which indexes arrays representing x, y, z positions of points from a structure called 'data' (derived from a .ply 3d graphics file) and rearranges them into a 3 x n matrix:
% orders vertex data from structure into column vectors
x = data.vertex.x
y = data.vertex.y
z = data.vertex.z
% vertically concatenates x, y, z to form a 3 x n matrix stored in the
% structure, verts
verts = horzcat(x, y, z)
%Sequentially indexes PX PY PZ into a 3 x n matrix where columns are x y z
%components of position vectors
for i=1:length(x)
vertsnew(:,i)=[x(i);y(i);z(i)];
end
This creates a matrix of the form:
3.7427 3.74984 1.38903
4.7384 3.76483 8.76289
9.6389 9.62843 5.78290 .............
I want to create a structure where each column vector in this array is a seperate element. I thought the following might do the trick:
vertz=struct();
for k=1:size(x)
Vk = [vertsnew(1,k)];
vertz.(['VZ' num2str(k)])=Vk;
end
But this results in a structure with x, y, z arranged sequentially as individual elements. E.g:
vertz.VZ.1 = 3.7427
vertz.VZ.2 = 4.7384
vertz.VZ.3 = 9.6389
I am able to create individual column vectors using:
%Orders arrays, into discrete column vectors
for i=1:length(x)
assignin('base',['vertv' num2str(i)],[x(i);y(i);z(i)])
end
E.g.
vertv1 = 3.7427
vertv2 = 4.7384
etc
Though I am unsure how to obtain the desired structure from these seperate arrays. Any help would be greatly appreciated.
Thomas
  6 Comments
Matt J
Matt J on 27 Nov 2012
Edited: Matt J on 27 Nov 2012
If you're talking about a 4x4 rototranslation matrix, then you would want to pad along the bottom with 1s instead of 0s. Instead of using a 4x4 matrix, a more efficient way to perform a rototranslation (probably) is
out = bsxfun(@plus,R*vertsnew,t)
because this way MATLAB doesn't have to copy all of the data in vertsnew to a new 4xn array. That would matter mainly if n is large.
Thomas Seers
Thomas Seers on 27 Nov 2012
Apologies, I forgot the bottom row is 0 0 0 1. Thanks for your advice Matt. I'll have to have a look up the bsxfun function as I'm not familiar with it. The reason I was to use a 4x4 matrix is that it is output by your absor() function: very useful to me for introducing arbitrerally oriented and scaled spatial data into a target coordinate system. Though I'm sure you know much more about that than I do! I may need the more efficient option though as I'm processing point datasets containing tens to hundreds of thousands of points (though I do have access to some pretty decent hardware to counter this).
Thomas

Sign in to comment.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 27 Nov 2012
Edited: Azzi Abdelmalek on 27 Nov 2012
y=[3.7427 3.74984 1.38903
4.7384 3.76483 8.76289
9.6389 9.62843 5.78290]
for k=1:size(y,2)
vertz.(sprintf('VZ%d',k))=y(:,k)
end
  2 Comments
Thomas Seers
Thomas Seers on 27 Nov 2012
Thanks Azzi The code works perfectly, though as Matt has pointed out, perhaps this is not the best data structure for my purposes.
Shukran
Thomas
Azzi Abdelmalek
Azzi Abdelmalek on 27 Nov 2012
I agree with him that is not the best way, but at the end you are the only person to decide how to do it. Also, whatever you do, there is always a better way!

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!