Evaluating anonymous/symbolic array function
조회 수: 4 (최근 30일)
이전 댓글 표시
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)
댓글 수: 0
채택된 답변
Walter Roberson
2021년 12월 22일
fun1 = matlabFunction(fx)
Do not do that. Instead,
fun1 = matlabFunction(fx, 'vars', x);
댓글 수: 8
Walter Roberson
2021년 12월 24일
I filed an enhancement request. I do not expect a real solution any time soon.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Computations in MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




