필터 지우기
필터 지우기

custom use of heavisde?

조회 수: 3 (최근 30일)
ABTJ
ABTJ 2019년 5월 14일
댓글: Walter Roberson 2019년 5월 18일
I want to make a function just like the one in attached photo using heaviside command
The graph i get by using my following code,does not continue after t=2
I am trying my following code:(how can i change this code to get output plot like the attached photo)
clc
clear all
close all
syms t
x=[heaviside(t)-heaviside(t-1)]+heaviside(t-2)
ezplot(x)
axis([-0.5 4 -0.25 1.5])

채택된 답변

darova
darova 2019년 5월 14일
How to atomate it?
x1 = [1 1 -1 -1 1 1];
x2 = [0 1 1 2 2 3];
y = heaviside(x1);
plot(x2,y)
xlim([-0.5 3.5])
axis equal
  댓글 수: 3
darova
darova 2019년 5월 15일
편집: darova 2019년 5월 15일
Hell im good
syms t
x = heaviside(t-2)-heaviside(t-1)+1;
ezplot(x,[0 3])
xlim([-0.5 3.5])
axis equal
Walter Roberson
Walter Roberson 2019년 5월 18일
If I recall correctly in R2015a you needed to use fplot() instead of ezplot() for symbolic expressions.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by