fimplicit function dont work for some reason
古いコメントを表示
<<

>>
fimplicit function dont work for some reason
回答 (1 件)
Walter Roberson
2017 年 2 月 2 日
0 投票
fimplicit requires R2016b or later. If you do have R2016b or later, please show us your code.
2 件のコメント
Pape Traore
2017 年 2 月 2 日
Walter Roberson
2017 年 2 月 2 日
In the second of those, because a function handle is not being created, that code can only work if you had previously used
syms x
so that the assignment creates a symbolic expression that MATLAB can plot.
If you had not used "syms x" and had not assigned anything to x, then your assignment to "fun" will fail because of the undefined x. If you had assigned something numeric to x then the assignment to fun would work but fimplicit() would fail because fimplicit() is not defined when the first parameter is numeric.
カテゴリ
ヘルプ センター および File Exchange で Line Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!