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

조회 수: 2 (최근 30일)
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

채택된 답변

TADA
TADA 2018년 11월 21일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by