Borrar filtros
Borrar filtros

How to add data in a matrice?

1 visualización (últimos 30 días)
Philipp Mueller
Philipp Mueller el 12 de Sept. de 2016
Comentada: Philipp Mueller el 12 de Sept. de 2016
I have just one input parameter: "Number of rows" How can i create such a matrice with 4 columns and this input data "1,2,3,4;5,6,7,8;9,10..... With a for loop?
F = [1,2,3,4;5,6,7,8;9,10,11,12;13,14,15,16;17,18,19,20;21,22,23,24;25,26,27,28;29,30,31,32];
thank you so much

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 12 de Sept. de 2016
without loop:
F = reshape(1:32,4,[])';

Más respuestas (1)

KSSV
KSSV el 12 de Sept. de 2016
Editada: KSSV el 12 de Sept. de 2016
Why you want to use a loop? you can do it in a single stretch.
if rows are known:
rows = 8 ;
data = 1:32 ;
F = reshape(data,[],rows)' ;
If columns are known
col = 4 ;
data = 1:32 ;
F = reshape(data,col,[])' ;
Note that while converting data into a matrix, the number of elements must not change.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by