How to extract values from a field of a stucture?
2 次查看(过去 30 天)
显示 更早的评论
Hi everyone, I state that I'm a beginner in the use of Matlab, so I guess that what I'm asking could be solved quite easily, but I have been reading and trying a lot of different ways and still, I have no solutions. I have a structure ("Dati"), which is generated by an external software that works on a geographic grid. This grid has 196 cells in the X direction, and 337 in the Y direction; On this grid 244 different scenarios have been launched.
By writing "A=extractfield(Dati,'Val') I get, of course, the list of all the data inside the structure, and by "plot(extractfield(Dati,'X'),extractfield(Dati,'Y'))" I can represent the grid; but what I would like is to get the chance to represent in a plot the grid with all the different scenarios (244), and be able to handle the value of the third variable (energy per transport) in order to later calculate an average. Can someone help me?
0 个评论
采纳的回答
Fabio Freschi
2019-9-26
I don't have the data so I cannot test it. Try
% select the Scenario
iScenario = 1;
% plot
surf(Dati.X,Dati.Y,Dati.Val(iScenario,:,:));
Note that the field Val has different dimensions from X and Y, so the previous code doesn't work. But maybe you have more insight on the original data
5 个评论
Fabio Freschi
2019-9-26
I arbitrarily remove the first row and column of X and Y to match the dimensions of Val. Maybe you know why X and Y have an additional row/col
figure;
s = surf(data.X(2:end,2:end),data.Y(2:end,2:end),squeeze(data.Val(1,:,:)));
s.EdgeColor = 'none';
light
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!