atwo to a one dimentional vector in Matlab

1 Ansicht (letzte 30 Tage)
Bob
Bob am 23 Mai 2012
How would I get a one dimentional vector in Matlab, so that when I type size(x) the size is, for example, 10 and not 1 by 10?

Antworten (3)

Sean de Wolski
Sean de Wolski am 23 Mai 2012
That is not possible unless you define your own class that will internally store the vector as a 1x10 but display 10 when queried for size or if you write your own size function.
Otherwise, every vector, scalar, matrix etc has at least two dimensions in size.

Walter Roberson
Walter Roberson am 23 Mai 2012
You cannot. All arrays in MATLAB show up as 2 or more dimensions for the purposes of size. You can, however, get a column vector.
x = 1 : 10;
size(x)
x1 = x(:);
size(x1)
If you have a row vector, you can use the .' operator to turn it into a column vector:
x = 1 : 10;
size(x)
x1 = x.';
size(x1)
You can construct a column vector directly:
x = (1 : 10).'
size(x)
x = [1; 2; 3; 4; 5];
size(x)

Jan
Jan am 24 Mai 2012
Although Sean and Walter have stated it already, I repeat it again: "Mat"lab has been designed as "Matrix" calculator, therefore all arrays have been matrices at first. After Matlab 4.1 multidimensional arrays have been added, but the matrix like shape of vectors has not been removed due to backward compatibility.

Kategorien

Mehr zu Creating and Concatenating Matrices 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!

Translated by