conversion of array to vector
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i want to know how can we convert i list of array to a vector form
plz tell me by writing some piece of code....
Mean=[];
Mean=mean2(inpImage);
disp(Mean);
how i can convert the above amaean array to vector?
1 Kommentar
Antworten (1)
Miroslav Balda
am 9 Mär. 2013
The first command is useless. Suppose inpIamage is a matrix, the character of Mean depends of your function mean2. Should function mean2 be equal mean, the variable Mean would be row vector. The column vector you gain by Mean(:).
If the function mean2 yields Mean being a cell array, you should use a conversion of the array to real vector, say Mean{:} of cell2mat function.
1 Kommentar
Prakhar Vishnoi
am 15 Mär. 2018
Bearbeitet: Prakhar Vishnoi
am 15 Mär. 2018
p={'dxw','ff'};
p(1)
cell2mat(p(1))
%try the code above to understand
%Thanks
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!