bar chart for an array
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jordanf1519
el 4 de Mayo de 2018
Comentada: Ameer Hamza
el 5 de Mayo de 2018
I'm trying to create a bar chart for a matrix, its a 1x30 but I only want the 0, 10th, 20th and 30th values.
I've tried many formats such as in the image but I cannot manage to get it working.
Any suggestions out there?
0 comentarios
Respuesta aceptada
Ameer Hamza
el 4 de Mayo de 2018
Editada: Ameer Hamza
el 4 de Mayo de 2018
I MATLAB, use the following syntax to index into an array.
bar([1 10 20 30], mean_1_1_walk([1 10 20 30]))
Also in MATLAB indexing start from 1, unlike some other programming languages (such as c/c++, java, python) where indexing starts from 0.
8 comentarios
Ameer Hamza
el 5 de Mayo de 2018
You can find several examples on documentation page which will help you to do this: https://www.mathworks.com/help/matlab/ref/bar.html#d119e66370.
Más respuestas (0)
Ver también
Categorías
Más información sobre Bar Plots 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!