how can i extract the symbolic variable from a symbolic vector or matrix

5 ビュー (過去 30 日間)
reza sol
reza sol 2017 年 12 月 5 日
編集済み: M 2017 年 12 月 5 日
I have a vector like something in attach file f0 and L was defined as two symbolic parameters. I want these parameters be like vector coefficient for [1/6;2/3;1/6] Thanks in advance

採用された回答

M
M 2017 年 12 月 5 日
syms f0 L
r=f0*L*[1/6;2/3;1/6];
r =
(L*f0)/6
(2*L*f0)/3
(L*f0)/6
and
var=symvar(r)
var =
[ L, f0]
  2 件のコメント
reza sol
reza sol 2017 年 12 月 5 日
Appreciate your quick answer.Another thing i would like to get access to actually is that numeric data as a vector .Imagine you have a huge size matrix and you have all these F0*L in it.I need a function or any manipulation Technic to have both symbolic vector and numeric data matrix separately
M
M 2017 年 12 月 5 日
編集済み: M 2017 年 12 月 5 日
Not sure if it is the best way but you can try something like this :
syms f0 L
num=[1/6;2/3;1/6];
r=f0*L*num;
symbolicVariables=symvar(r)
symbolicVariables =
[ L, f0]
numericPart=zeros(length(r),1);
for i=1:length(r)
numericPart(i)=coeffs(r(i));
end
numericPart =
0.1667
0.6667
0.1667

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by