Can anyone help me in removing the ERROR shown in output figure?

1 回表示 (過去 30 日間)
ruqaiya shaikh
ruqaiya shaikh 2021 年 1 月 19 日
回答済み: amin 2021 年 1 月 20 日
clc;
close all;
syms s;
F =(s+1)/(s*(s+2));
%Laplace transform
f=laplace(F)
pretty(simplify(f))
fplot(f,[-1,4],'r-')
hold on
%Inverse Laplace transform
fi=ilaplace(F)
pretty(simplify(fi))
fplot(fi,[-1,4],'b-')
hold off
title('F =(s+1)/(s*(s+2))');
legend('Laplace transform','Inverse Laplace transform')
grid;

回答 (1 件)

amin
amin 2021 年 1 月 20 日
You can turn off the warnings by:
warning off

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by