Error on a single numeric equation

2 ビュー (過去 30 日間)
Mark Montero
Mark Montero 2021 年 12 月 6 日
編集済み: DrZoidberg 2021 年 12 月 6 日
I keep getting error at defining f_1(t), is there any other way to input its equation to matlab?

回答 (2 件)

Walter Roberson
Walter Roberson 2021 年 12 月 6 日
heaviside not heavyside
heaviside will not convert that table of conditions into appropriate heaviside calls. You can write your code in terms of piecewise() and rewrite() 'heaviside'. But before doing that, use sympref to change Heavisideatorigin

DrZoidberg
DrZoidberg 2021 年 12 月 6 日
編集済み: DrZoidberg 2021 年 12 月 6 日
********************************
EDIT: I'm sorry my answer was not correct, please check the comment below:
  1 件のコメント
Walter Roberson
Walter Roberson 2021 年 12 月 6 日
This is not correct. You only need to syms the function form if you are going to be using the indefinite form such as taking the derivative before having defined what the function is.
syms t
f1(t) = 1
is not an error due to syms f1(t) not having been used.
Instead it is an error because the form requires a symbolic right hand side
syms t
f1(t) = sym(1)

サインインしてコメントする。

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by