フィルターのクリア

Writing a simple funtion

6 ビュー (過去 30 日間)
Kristopher
Kristopher 2014 年 6 月 20 日
編集済み: Roger Stafford 2014 年 6 月 20 日
I need to write a function in which you enter 2 inputs, and the output is the sum of the integers between those numbers. for example, if x=(1,4) y should equal (1+2+3+4) (y=10) It should give the same output when x=(4,1). This should be able to be done using a forloop, but im not sure how to do it.

回答 (1 件)

Roger Stafford
Roger Stafford 2014 年 6 月 20 日
編集済み: Roger Stafford 2014 年 6 月 20 日
The 'ceil' and 'floor' are used here in case the inputs are not integers.
function s = sumintegers(a,b)
if a <= b
s = sum(ceil(a):floor(b));
else
s = sum(ceil(b):floor(a));
end
return

カテゴリ

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