how to linspace to create a coulmn vector
Mostrar comentarios más antiguos
Create a column vector using linspace to enter the values of force from 0 to 550, 50 elements increasing and then 550 to 0, 50 elements decreasing.
Respuestas (1)
F1 = (0:50:550)' ;
F2 = flipud(F1) ; F2 = (550:-50:0)' ;
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!