Matlab while loops with equations

2 ビュー (過去 30 日間)
Trey  Godfrey
Trey Godfrey 2022 年 5 月 4 日
回答済み: James Tursa 2022 年 5 月 4 日
Does anyone know how I would start to write this i undersand I should be using while loops to run through the fomula but don't know where to go from there

回答 (1 件)

James Tursa
James Tursa 2022 年 5 月 4 日
You should probably go through the online tutorials for learning MATLAB. But I will give you an outline to get started:
tolerance = _____; % the tolerance to use for stopping condition
difference = _____; % an arbitrary number that is >= tolerance (so you get inside the while loop below)
n = 1; % the starting value of n
one_over_e = _____; % the intial estimate of 1/e (an expression involving n)
while( difference >= tolerance )
_____ % PUT CODE IN HERE TO INCREMENT n, calculate a new estimate, calculate the new difference, etc.
end
_____ % PUT CODE HERE TO PRINT RESULTS
You need to fill in the blanks

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by