Borrar filtros
Borrar filtros

Problem with Create Matrix

2 visualizaciones (últimos 30 días)
Dani D
Dani D el 27 de Oct. de 2015
Editada: Thorsten el 27 de Oct. de 2015
Hello, Why this command doesn't work? FD = [1:10 ; 50:60]

Respuesta aceptada

Thorsten
Thorsten el 27 de Oct. de 2015
Editada: Thorsten el 27 de Oct. de 2015
Because
Error using vertcat
CAT arguments dimensions are not consistent.
You have 10 numbers in the first row, and try to conCAT vertically 11 numbers in the second row. That's not possible in a matrix, all rows must have the same number of columns.
You can use a cell array
FD{1} = 1:10; FD{2} = 50:60;
or you have to change the numbers, like
FD = [1:10; 51:60];
  2 comentarios
Dani D
Dani D el 27 de Oct. de 2015
Thanks , but i have the below error.
>> FD{1} = 1:10; F{2} = 50:60;
Cell contents assignment to a non-cell array object.
Thorsten
Thorsten el 27 de Oct. de 2015
Editada: Thorsten el 27 de Oct. de 2015
Use
clear FD
FD{1} = 1:10; FD{2} = 50:60;
and note that the second assignement should be FD{2}, not F (my typo, I corrected it above).

Iniciar sesión para comentar.

Más respuestas (0)

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