MATLAB: How to know the array of the function that i plot

arrayfunctiongui

hi everyone,
i need some a little help to complete my project, it is not hard but when i make the user enter a function in GUI and plot it alone it works but when i try to multiply it with another function it doesnt work.
also how i can know how to find the array that the matlab calculated for my function
thank for you all

Best Answer

See this example to convert to strings to function handles and multiply them
y1 = 'sin(x)';
y2 = 'cos(x)';
y1f = str2func(['@(x) ' y1]);
y2f = str2func(['@(x) ' y2]);
y = @(x) y1f(x).*y2f(x);
Related Question