Azzera filtri
Azzera filtri

How to create n arrays from a mxn matrix using mat2dataset

1 visualizzazione (ultimi 30 giorni)
Hi guys,
I'm using mat2dataset on a 100x100 matrix and i want to create 100 arrays of each column of the dataset. This is what i'm doing:
% y=100x100 matrix
s=mat2dataset(y);
y1=(ds.y1);
y1=y1.';
y2=(ds.y2);
y2=y2.'; ... %and so on
There must be a way to do this avoiding writing every single array!
Hope you can help me
Thanks!

Risposta accettata

Steven Lord
Steven Lord il 17 Giu 2016
DON'T DO THIS.
Seriously, DO NOT DO THIS.
See question 1 in the Programming section of the FAQ for more information about why this is a Bad Idea. Dynamic field names (described in the FAQ question) work for dataset arrays just like they do for struct arrays, if I remember correctly.
  5 Commenti
Steven Lord
Steven Lord il 20 Giu 2016
You don't need to use a dataset here. Just use a for loop iterating over the columns of y, and store the results of each iteration through the for loop in an element of the cell arrays u, v, and w.
y = randi(10, 1, 20);
C = cell(1, 20);
for k = 1:20
C{k} = magic(y(k));
end
C is a cell array whose nth cell contains the magic square matrix of size y(n) [or a specific 2-by-2 matrix if y(n) is 2, even though that matrix doesn't satisfy the requirements to be a magic square.]
Gaspar Cid
Gaspar Cid il 20 Giu 2016
Al'right! I finally did this:
u = cell(1,200);
v= cell (1,200)
w=cell(1,200)
for k=1:200
[u{k} v{k} w{k}] = yang(x0,y0,z0,a,A,P_G,mu,nu,theta,phi,x,y(k),z)
end
And it seems to work! Thank you very much!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by