How to show full column of data?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Bacha Munir
el 27 de Feb. de 2023
Comentada: Image Analyst
el 27 de Feb. de 2023
Hello. I ran the code like x=0:0.0001:0.8; and y=linspace(2,3,length(x));. After running I cannot see the transposed full column of data for "x or y" in the commond window. Please explain me why and how can I show it?. Thanks.
0 comentarios
Respuesta aceptada
Image Analyst
el 27 de Feb. de 2023
Leave off the semicolons. They are row vectors. To make them column vectors use the apostrophe.
x=0:0.0001:0.8
y=linspace(2,3,length(x))
x=x'
y=y'
6 comentarios
Image Analyst
el 27 de Feb. de 2023
For things that long, I just look at the variable in the workspace. Double click on the variable in the workspace panel to bring it up in the "Variables" panel which is like a spreadsheet.
Más respuestas (0)
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels 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!