function file for maclauring series approximation

My function file: function [approx] =cos1(x,n) %Calculates the Malcurin series approximation to cos(x) approx=0; for i=0:n-1 approx=approx+(1)^i*x^(2*i)/factorial(2*i) end
My command window: approx1=cos1(pi/3,1)
approx =
1
approx1 =
1
(How come i generated the value of one term , it comes up two variable with same value? How to minimize it to one variable?)

 採用された回答

Stephen23
Stephen23 2018 年 9 月 4 日
編集済み: Stephen23 2018 年 9 月 4 日

0 投票

Without a semi-colon a line of code will print its output:
function [approx] =cos1(x,n)
%Calculates the Malcurin series approximation to cos(x)
approx=0;
for i=0:n-1
approx=approx+(1)^i*x^(2*i)/factorial(2*i);
end ^ you forgot this!

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGenomics and Next Generation Sequencing についてさらに検索

タグ

質問済み:

2018 年 9 月 4 日

編集済み:

2018 年 9 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by