Community Profile

photo

Andreas Sorgatz

Last seen: 12 days ago Active since 2012

Followers: 0   Following: 0

Message

Statistics

  • Revival Level 2
  • First Answer

View badges

Feeds

View by

Answered
How can i define piecewise function ?
You are mixing MATLAB and MuPAD syntax. Also ';' or a linefeed is missing. Try >> syms x y >> piecewise(x<=y,1+y, x>y,1+...

6 years ago | 0

Answered
how can I call matlabFunction without optimize
Use f = matlabFunction(YourExpression,'File','YourFileName','Optimize',false);

6 years ago | 1

Answered
Plot different types of plots on same graph
The following input displays all objects in one plot: f2 := (x,y) -> x*exp(y) + cos( x*y ); gf2 := gradient( f2(x,y), [x,y...

12 years ago | 0