combining different row vectors of different lengths
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Adil Saeed
el 15 de Ag. de 2022
Comentada: Adil Saeed
el 16 de Ag. de 2022
t1 = 30;
t2 = 15;
t3 = 12;
t4 = 2.4;
t5 = 2.1428;
t6 = 2.5;
v1 = 0:t1:900-t1;
v2 = 900:t2:1800-t2;
v3 = 1800:t3:2700-t3;
v4 = 2700:t4:3600-t4;
v5 = 3600:t5:4500-t5;
v6 = 4500:t6:5400-t6;
I am wondering if i can combine all these 'v' vectors into one, whilst keeping the conditions set. So at 900, the values increase by t2 rather than t1 and at 1800 the values increase by t3 rather than t2 etc.
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Model Import 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!