I get an error and what caused it? - Function Plotting

조회 수: 1 (최근 30일)
cikalekli
cikalekli 2022년 1월 6일
댓글: cikalekli 2022년 1월 6일
I get an error. What caused it and how do I fix it?
Here my code:
t = -5:0.1:5;
y = ((2.*cos(x)+exp(-0.4.*x))./(0.2.*x+exp(-0.2.*x))) + ((4.*x)./3);
plot(t,y);
Edit: Typo correction.

채택된 답변

KSSV
KSSV 2022년 1월 6일
Are you looking for this?
x = -5:0.1:5;
y = ((2.*cos(x)+exp(-0.4.*x))./(0.2.*x+exp(-0.2.*x))) + ((4.*x)./3);
plot(x,y);
  댓글 수: 4
KSSV
KSSV 2022년 1월 6일
You can just print the values and see.
a = -5:0.1:5 ; % this creates numbers between -5 and 5 with step size 0.1
diff(a)
ans = 1×100
0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000 0.1000
Also have a look on linspace.
b = linspace(-5,5,5)
b = 1×5
-5.0000 -2.5000 0 2.5000 5.0000
If you want 5 as the step/ difference. YEs use:
c = -5:5:5
c = 1×3
-5 0 5
cikalekli
cikalekli 2022년 1월 6일
Your explanation was so fluently perfect.
I am appreciated with your help.
Bless you...

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by