Borrar filtros
Borrar filtros

How to show results of for end values as a vector.

1 visualización (últimos 30 días)
esat gulhan
esat gulhan el 23 de Ag. de 2020
Respondida: Alan Stevens el 23 de Ag. de 2020
Is there any way to represent results of for end as a vector.
for example
for h0=0:1:2
h=h0*2
end
results
ans
h =
0
h =
2
h =
4
But i want that result like a vector
ans
0 2 4
I know it without using for h0=0:1:2;h=h0*2 . But ı need to represent results of for end as a vector in my real code. can you help

Respuesta aceptada

Alan Stevens
Alan Stevens el 23 de Ag. de 2020
h0 = 0:2;
h = h0.*2

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays 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