Create a conditional function in script
显示 更早的评论
Hello,
I'm trying to create a conditional equation in Matlab. I created a simple test script below and receive errors for "Missing or extra characters". In my test, I am trying to create a simple function "fun", where fun=2*R if R>0 and fun=3*R if R<=0.
close all
clear all
clc
syms R
fun(R)=
if R>0
2*R
elseif R<=0
3*R
end
It appears my approach is just incorrect. Any help is much appreciated.
Thanks!
Josh
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Symbolic Math Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!