Operator '+' is not supported for operands of type 'function_handle'.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have two function handle,such as g=@(x)x+a,f=@(y)y+b
why not do '+'
h=g+f
for example
for t=1:10
h(0)=g;
h=g+t.*f
end
0 comentarios
Respuestas (2)
埃博拉酱
el 26 de Jun. de 2023
Only symbolic functions can be added directly. You may need to refer to Symbolic Math Toolbox.
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!