フィルターのクリア

geting answer in variable format , i want in number format.

1 回表示 (過去 30 日間)
Shantanu K
Shantanu K 2013 年 3 月 24 日
z = sym('2*x1 * x1 + x2*x2 + 3*x3*x3');
syms x1 x2 x3 ;
gradz = [diff(z,x1); diff(z,x2); diff(z,x3)];
x1(1)=2;
x2(1)=-2;
x3(1)=1;
%for k=2:5
p=subs(gradz, [x1 x2 x3], [x1(1) x2(1) x3(1)]);
I am getting answer in variable format,,,,,,i want in number format....so how i should get it?

回答 (1 件)

Walter Roberson
Walter Roberson 2013 年 3 月 24 日
If there are no remaining symbolic variables in p, then double(p) to get the double precision equivalent.
  2 件のコメント
Shantanu K
Shantanu K 2013 年 3 月 24 日
Thanks Walter for your response. Then what i should do? when i use for loop then it create problem in calculation of p
Walter Roberson
Walter Roberson 2013 年 3 月 24 日
? What should you do about what ?

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

カテゴリ

Help Center および File ExchangeSymbolic Math Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by