Is it possible to convert symfun to sym?

75 views (last 30 days)
I have a variable x that is of class symfun and I want to convert it to class sym. Unfortunately I can't post the code because there are a ton of custom functions. I found that the code x=x(1,1) works when x is a two dimensional vector but that is not always the case.

Accepted Answer

Christopher Creutzig
Christopher Creutzig on 20 Nov 2017
Symfun is a subclass of sym, so, yes, a symfun is already a sym.
To get only the body of the function, use formula or call the symfun:
syms x(t)
x(t) = t^2 - t;
formula(x)
% or:
x(t)
  2 Comments
Jawad Bdour
Jawad Bdour on 13 Dec 2018
Thank you very much, your answer really helped me!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!