Using the struct function with a for loop
4 次查看(过去 30 天)
显示 更早的评论
Hello
I have a matrix that is 89x4. I've used a for loop to extract each row of data to make 89 new matrices. I needed to do that because each row is a new nodal point in my data set. What I need to do now is make a structure array with a list of each nodal point.
My original for loop is
for n=1:89;
eval(['Node_' num2str(n) '=nodeXYZ(n,:);']);
end
That gives me each matrix (Node_1 to Node_89). I've tried to used dynamics naming within a for loop to make a different array within a structure for each node but I keep getting errors. Or when it works its completely wrong.
Triangle_points.node_data.nodes=struct('Node',Node_1);
for field='Node';
Triangle_points.node_data.nodes.(field)=Node_1;
end
That is along the lines of what I'm trying. Its probably very wrong, which is why I need the help. I really don't want to have to write out 89 different fields and values! Any suggestions or help on this would be appreciated.
1 个评论
Stephen23
2016-8-25
编辑:Stephen23
2016-8-25
@Meghan: using eval is a buggy, slow, and obfuscated way to write code. Learn to code without it and your code will be faster, better, neater, and easier to read. There are so many tools that help you when you do not use eval, such as code hinting, tab completion, variable highlighting, help, syntax error highlighting, etc, etc,, which help you to write good code none of them work when you use eval! Summary: learn to write code without eval.
采纳的回答
Adam
2016-8-25
编辑:Adam
2016-8-25
Something like
for n = 1:89
fieldName = strcat( 'Node_', num2str( n ) );
Triangle_points.node_data.nodes.( fieldName ) = nodeXYZ(n,:);
end
should give you the output you are looking for without needing to go via 89 unwanted variables. I would question why you would want this setup though.
You could instead use an array of 89 structures, each just with a 'node' field or simply keep your data in its original array as the best option. Most maths that you would want to do can be done on data that just sits in a single neat multi-dimensional numeric array. Moving away from one numeric array into 89 of them or a struct with 89 fields or 89 structs with 1 field all just make subsequent operations all the more complicated and inefficient.
更多回答(1 个)
Azzi Abdelmalek
2016-8-25
This is a very bad programming practice, please read this: http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2.2C....2CA10_in_a_loop.3F
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!