how to create a cell array with functions from a matrix consisting symbolic expression
Show older comments
I have a matrix A
clear all
clc
syms x y
A= [x x^2+y^2;x-y 2+y];
and I want to get a cell array like B; how do i get.. B needs to be a cell array with all elements having both x and y in their function handle regardless of the fact that wheather it is afunction of one variable only.
B = {@(x,y)x,@(x,y)x.^2+y.^2;@(x,y)x-y,@(x,y)x.^2-y.^2}
Thanks for your time and kind help
Accepted Answer
More Answers (0)
Categories
Find more on Common Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!