Borrar filtros
Borrar filtros

hintializing variables with different numbers and saving them in a matrix

1 visualización (últimos 30 días)
Hi,
I have a question about initializing variables that contain different numbers in a matrix.
For example,
I want to obtain matrix V by using while loop:
V = [V1;V2;V3.....;Vn].
Instead of manually writing V1, V2, V3 .. in matrix V, I want it to be done by using a loop!
Thank you.

Respuesta aceptada

Jan
Jan el 5 de Oct. de 2017
Editada: Jan el 5 de Oct. de 2017
This is asked daily for many years now. See:
The answer is always the same: Don't do this. Create an array instead and use the numbers as indices. This is faster, nicer, more flexible, easier to debug, to maintain, to expand and to read.
V = zeros(1, n); % For scalars
m = 7;
M = zeros(m, n); % For column vectors
C = cell(1, n); % For variables with different sizes
for k = 1:n
V(k) = k ^ 2;
M(:, k) = rand(m, 1);
C{k} = sprintf('%g', k);
end

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by