필터 지우기
필터 지우기

Evaluating anonymous/symbolic array function

조회 수: 1 (최근 30일)
Navinder Singh
Navinder Singh 2021년 12월 22일
댓글: Walter Roberson 2021년 12월 24일
I use symbolic and anonymous array functions interchangeably using "matlabFunction". I wish to extract the function value at discrete points using array. The issue comes when any of the entries is not a function of the independent variables.
Usually, script A gives error: Dimensions of arrays being concatenated are not consistent. So, I use the workaround in script B that solves the error and gives the correct output. But when converting from a symbolic function as shown in script C, this error could not be avoided. I know we could use "subs" as in script D, but its often slow as the actual function (fx) in my case is computationally tasking to be evaluated this way. Currently the way I have implemented it as - I am cheking each entry of symbolic array function and if its a constant, then get the corresponding values using a simple multiplication as show in script E. I wish to ask if there is a better/efficient way of handling this
%---------------------
% Script A
fun = @(x) [1;x]
value = fun(1:5)
%---------------------
% Script B
fun = @(x) [x.^0;x];
value = fun(1:5)
%---------------------
% Script C
syms x
fx = [1;x]
fun1 = matlabFunction(fx)
value = fun1(1:5)
%---------------------
% Script D
syms x
fx = [1;x]
value = subs(fx,x,1:5)
%---------------------
% Script E
arr = 1:5;
for i=1:length(fx)
if length(symvar(fx(i)))<1
value(:,i) = double(fx(i))*arr.^0;
else
fun2 = matlabFunction(fx(i));
value(:,i) = fun2(arr);
end
end
disp(value)

채택된 답변

Walter Roberson
Walter Roberson 2021년 12월 22일
fun1 = matlabFunction(fx)
Do not do that. Instead,
fun1 = matlabFunction(fx, 'vars', x);
  댓글 수: 8
Walter Roberson
Walter Roberson 2021년 12월 24일
It is a challenge :(
Walter Roberson
Walter Roberson 2021년 12월 24일
I filed an enhancement request. I do not expect a real solution any time soon.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by