Create a column vector with elements counting down from 200 to 0 in increments of 5
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I created the vector, C= [200:-5:0] and I git an error that reads, Variable C must have size[41 1]. It is currently of size [1 41]
1 comentario
Stephen23
el 2 de Ag. de 2023
Note that the square brackets are completely superfluous. The MATLAB approach is simply:
C= 200:-5:0;
Respuestas (1)
Clay Swackhamer
el 1 de Ag. de 2022
Try transposing your output to flip it from a row vector (list of numbers going horizontally) to a column (list of numbers going vertically) like this:
C = C'
2 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown 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!