How to define a function with a summation

20 ビュー (過去 30 日間)
Rozalia Korycka
Rozalia Korycka 2019 年 5 月 30 日
コメント済み: Sahil 2022 年 9 月 18 日
Hello,
I'm fairly new to matlab so I'm not too familiar with the way all of the functions work. I need to plot a function I have been given :
but I am having trouble defining it. I've tried the following:
syms k x
f = matlabFunction(b0 + symsum(a(k)*sin(k*x) + b(k)*cos(k*x)));
This gives me an error stating "Invalid indexing or function definition. Indexing must follow MATLAB indexing. Function arguments must be symbolic variables, and function body must be sym expression."
Can someone help me out? :)
  1 件のコメント
Sahil
Sahil 2022 年 9 月 18 日
syms k x f = matlabFunction(b0 + symsum(a(k)*sin(k*x) + b(k)*cos(k*x)));

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

採用された回答

Matt J
Matt J 2019 年 5 月 30 日
編集済み: Matt J 2019 年 5 月 30 日
An efficient implementation would be,
a=___;
b=___;
b0=___;
fplot(@(z) myFourier(z,a,b,b0));
function f=myFourier(x,a,b,b0)
n=numel(a);
arg=x(:).*(1:n);
f=b0+sin(arg)*a(:)+cos(arg)*b(:);
f=reshape(f,size(x));
end
  3 件のコメント
Matt J
Matt J 2019 年 5 月 30 日
I'm baffled by the warnings. The function is vectorized as fplot requires.
Rozalia Korycka
Rozalia Korycka 2019 年 5 月 30 日
That's exactly the opposite of what the warning says hahah but I don't know since I don't even know what is that supposed to mean

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

その他の回答 (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