필터 지우기
필터 지우기

Making a piecewise linear plot

조회 수: 8 (최근 30일)
Carlos
Carlos 2013년 10월 28일
편집: Ned Gulley 2013년 10월 28일
I am trying to do a simple plot in matlab, how can I do this: a line that has a constant slope from y=0 to 40, then at 40 it is a flat line until infinity. I am still rusty with matlab and I am not sure how to do this. this slope goes from x=0 to 32

답변 (1개)

Jamie
Jamie 2013년 10월 28일
편집: Jamie 2013년 10월 28일
Hi Carlos,
Many way to do this. For a piecewise cont func try this
t=[0:0.1:32];
y = 40/32*t;
plot(t,y)
hold on
t1 = [32:0.1:100];
y1 = 40*ones(size(t1));
plot(t1,y1)

카테고리

Help CenterFile Exchange에서 Smoothing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by