フィルターのクリア

symbol from string [2]

1 回表示 (過去 30 日間)
Pietro Rossi
Pietro Rossi 2011 年 5 月 11 日
a='name'
syms (a)
this code generates a symbol called 'name'. If I write a function, I don't know the string before I use it, so how can I use the symbol 'name' (like symbol) into the function?
i.e
function [A]=f(a)
a='name';
syms (a)
c=cos(name);
s=sin(name);
A=c+s;
In the output I want a symbolic expression A=cos(name) + sin(name).
Thank you a lot for you answer. Pietro Rossi

採用された回答

Walter Roberson
Walter Roberson 2011 年 5 月 11 日
I would try
function [A]=f(a)
%a='name'; %I presume this will be passed in
syms (a)
c=cos(a);
s=sin(a);
A=c+s;
  3 件のコメント
Walter Roberson
Walter Roberson 2011 年 5 月 11 日
Ah, in that case,
function [A]=f(a)
as = syms (a)
c=cos(as);
s=sin(as);
A=c+s;
Pietro Rossi
Pietro Rossi 2011 年 5 月 11 日
Thanks so mush! The function run now! :)

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by