How to a two plot in same x value for different y value?

조회 수: 1 (최근 30일)
VIJAY
VIJAY 2020년 3월 29일
답변: Cris LaPierre 2020년 3월 29일
I write a matlab program as follow
clear all;clc;
file1;
y=0;
for t=1:100
y=y+2;
end
plot(y,'b','linewidth',3);
in file1.m has following program
k=0;
for t=1:100
k=k+1;
end
plot(k,'r','linewidth',3);
I want to got a single plot while calling a file1 its blue colour plot after that the plot has red colour in same x axis value.

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 3월 29일
If you have 15 minutes, I suggest going through Chapter 9 of MATLAB Onramp. It will introduce you to plotting in MATLAB.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Formatting and Annotation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by