Azzera filtri
Azzera filtri

Finding transpose of values.

1 visualizzazione (ultimi 30 giorni)
Silpa K
Silpa K il 6 Nov 2019
ts = xlsread('ArrowHead_TRAIN.xlsx');
for i = 1:100
b=20
p=ts(i,:);
n= numel(p);
Z=mat2cell(p,diff([0:b:n-1,n]));
A=transpose(Z);
celldisp(A)
end
I want to find the transpose of Z values.I need the elements of Z in an array order.I used transpose,but not working.How can I get the elements of Z in an array form.Please help me.

Risposta accettata

Walter Roberson
Walter Roberson il 6 Nov 2019
ts = xlsread('ArrowHead_TRAIN.xlsx');
for i = 1 : size(ts,1)
b = 20;
p = ts(i,:);
n = numel(p);
Z = mat2cell(p, 1, diff([0:b:n-1,n]));
A = cellfun(@transpose, Z, 'uniform', 0);
celldisp(A)
end
  2 Commenti
Silpa K
Silpa K il 6 Nov 2019
Thank you sir. How can I get result in row wise.I need a result in row wise.
Walter Roberson
Walter Roberson il 6 Nov 2019
The result is row-wise if you do not do the transpose.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by