필터 지우기
필터 지우기

Can you store symbolic functions in a matrix/vector?

조회 수: 13 (최근 30일)
KieranSQ
KieranSQ 2019년 2월 4일
댓글: Walter Roberson 2020년 9월 6일
I am trying to write a finite element code. I want to consider the basis functions .
So I need to be able to store them in a matrix/vector such as: . In matlab I tried the following ,
phi=@(x,y)1/h.*[1-x-y;x;y]
but I either get an error for variables not being defined (which is the point at this stage). From here I want to do something like the following, but I can't see how. Any help would be appreciated!
phi(1)=1/h[1-x-y]

채택된 답변

Walter Roberson
Walter Roberson 2019년 2월 4일
Symbolic functions cannot be stored in a regular vector or array. If you concatenate symbolic functions, then what you get back is not a vector of symbolic functions but rather a single symbolic function that returns a vector. This is because the () indexing operation for symbolic functions is always interpreted as invocation of the function, never as indexing.
This is also part of the same reason that function handles cannot be stored in a regular vector or array, because () for function handles always means invocation, never indexing.
You can store symbolic functions as elements of a cell array.
Symbolic expressions can be stored in a vector or array. Most of the time it is easier to work with symbolic expressions rather than symbolic functions. However if you need to express differentiation of a symbolic function whose definition is not fully known, such as a differential equation, then you need a symbolic function.

추가 답변 (1개)

Sebastian Pakula
Sebastian Pakula 2020년 9월 6일
There is a way of picking one of the function from matrix (or vector) of functions. Try this:
syms x y
h=10;
phi=(1/h)*[1-x-y;x;y];
% if you need second function write:
f2=[0 1 0]*phi;
% if you need third one:
f3=[0 0 1]*phi;
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 9월 6일
You do not show any functions, only expressions.
For expressions you can just index directly, phi(2) for example.
You also need to be careful about 0 times infinity, which would normally be nan.

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

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by