Generation of a column with constants values that increases for different RANGE of row
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I'm trying to generate ONE column of numbers in Matlab as follows:
1) let the value be equal 10 for row 1 to 30,
2) let the value be equal 10 + increment (for example increment=8) for row 31 to 60,
3) let the value increase in increments of 8 for each new sequence of row 1 to 30
until final constant value equals a number, (for example, 82)
I tried a loop like this:
for f =1:30
for g=(10:8:82);
h(f,1) = g;
end;end;
but did not work.
My result is only a column with the constant 82
from row 1 until 30.
I wonder if someone could help me.
Thanks
Emerson
0 comentarios
Respuesta aceptada
Oleg Komarov
el 28 de Mzo. de 2011
1) A( 1:30,1) = 10;
2) A(31:60,1) = 18:8:10+8*30;
3) not clear
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!