Graph with string variable
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Zongo Amara Mohamed Isaac
el 19 de Jun. de 2019
Comentada: Jan
el 24 de Jun. de 2019
Hey guys,
I've just become very familiar with Matlab, but I'm having trouble building a graph:
on the X axis I would like to have the years and the values of the exports of manufactirial and food goods in order.
I don't know the code to use
thanking you in advance
attached my file
0 comentarios
Respuesta aceptada
Zongo Amara Mohamed Isaac
el 19 de Jun. de 2019
1 comentario
Jan
el 24 de Jun. de 2019
Please post comments to an answer in the section for comments to an answer and select the answer, which solves the problem as accepted answer, not your comment. Then the readers knwo, which solution is working.
Más respuestas (2)
Jan
el 19 de Jun. de 2019
You did not even make an attempt?
data = readmatrix('data.xlsx');
plot(data(:, 1), data(:, 2), 'r', ...
data(:, 1), data(:, 3), 'b');
0 comentarios
Star Strider
el 19 de Jun. de 2019
Try this:
[D,S] = xlsread('data.xlsx');
Years = str2double(S(2:end,1));
figure
plot(Years, D)
grid
legend(S(1,2:3))
producing:

1 comentario
Star Strider
el 19 de Jun. de 2019
@Zongo Amara Mohamed Isaac —
If my Answer helped you solve your problem, please Accept it!
Ver también
Categorías
Más información sobre 2-D and 3-D 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!