fimplicit function dont work for some reason

Answers (1)

fimplicit requires R2016b or later. If you do have R2016b or later, please show us your code.

2 Comments

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.

Sign in to comment.

Categories

Asked:

on 2 Feb 2017

Commented:

on 2 Feb 2017

Community Treasure Hunt

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

Start Hunting!