I want to find...

検索

Shares

Table of Content

constrain()

[Math]

説明

Constrains a number to be within a range.

構文

constrain(x, a, b)

媒介変数

x: the number to constrain, all data types
a: the lower end of the range, all data types
b: the upper end of the range, all data types

戻り値

x: if x is between a と b
a: if x is less than a
b: if x is greater than b

sensVal = constrain(sensVal, 10, 150);
// limits range of sensor values to between 10 and 150 

See also

  • [Language] min()
  • [Language] max()

Language Reference Home

86Duino のリファレンスのテキストは Arduino レファレンス を編集したもので、 Creative Commons Attribution-ShareAlike 3.0 License下でライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

上部へスクロール