Borrar filtros
Borrar filtros

Plot 2D line graph for each column in separate box having with minor grids on

4 visualizaciones (últimos 30 días)
The plot should consist on 36 2D line graph each in a separat box with unique x and y lable and 36 line graph must be in single window
Data = 204*36
x-axis of each box is 204 values(1 to 204)
Y-axis of each box is 100 values (1 to 100) (ignore the negative values in this plot)
we can plot 2d line graph with minor and major grids but do not know to get the exact required graph.
plot(test(:,1:end));
grid on
grid minor
How to get this kind of plot (a line graph in each box)
Thank you for help in advance

Respuesta aceptada

TADA
TADA el 21 de Nov. de 2018
To Generate A Separate Box For Each Curvery You Can Use subplot function Which Creates A Grid Of Axes
for i = 1:size(test,2)
ax1 = subplot(6,6,i);
plot(test(:,i));
end
or Generate An Axes Object On Your Own Usin axes function. in that case you'll want set the location manually. Its A Bit More Tedious But Gives you More Control
You Can Do It Similarly In A Loop

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by