Grablo Help Grablo Help
  • User Manual
  • Tips
  • News
  • Go to
    • Grablo Home
    • Grablo App
  • 한국어
Grablo Help Grablo Help
문의하기
Grablo Help Grablo Help
  • User Manual
  • Tips
  • News
  • Go to
    • Grablo Home
    • Grablo App
  • 한국어
loading
  1. Home
  2. User Manuals
  3. Block Coding
  4. Blocks
  5. Math
Updated on August 13, 2025

User Manuals

  • Folder icon closed Folder open iconQuick Start Guide
    • Grablo!
    • Basic Concepts
  • Folder icon closed Folder open iconProject
    • General
    • Sharing Project
  • Folder icon closed Folder open iconLogic
    • Logic
    • Control Group
    • Control
    • Condition Group
    • Action Group
    • Condition
      • General
      • Type
        • Always Met
        • Once Met
        • Variable Comparison
        • Schedule
        • Time Range
        • Time Interval
        • Condition Reference
        • Action Reference
        • Change Detection
        • Custom Condition
    • Action
      • General
      • Type
        • Write Variable
        • I/O Device Control
        • Time Delay
        • Timer
        • Display Image
        • Play Media
        • Synthesizer
        • Audio Recording
        • Audio Transform
        • Shell Command
        • Speech-to-Text
        • Text-to-Speech
        • File System
        • Read/Write File
        • Database
        • HTTP Communication
        • MQTT Communication
        • OPC UA Communication
        • Modbus Communication
        • Send Email
        • Telegram Message
        • User Defined Communication
        • PID Control
        • Statistics
        • Collection
        • Custom Action
  • Folder icon closed Folder open iconDashboard
    • General
    • Widgets
  • Folder icon closed Folder open iconSetting
    • GPIO
    • Variables
    • I/O Device
    • File Editor
    • Collection
    • Timer
    • Image Viewer
    • Audio Transfrom
    • Media Player
    • Synthesizer
    • Text-to-Speech
    • Speech-to-Text
    • Audio Recorder
    • MQTT Client
    • OPC UA Client
    • Modbus
    • Email Client
    • Telegram Bot
    • Database
    • User Defined Communication
    • PID Control
    • Statistics
  • Folder icon closed Folder open iconI/O Device
    • DS18B20 Digital Temperature Sensor
    • MAX31865 RTD Temperature Sensor
    • TinyGPS++ GPS Library
    • BMP180 Digital Pressure and Temperature Sensor
    • AHTx0 Temperature and Humidity Sensor
    • SHT2x Temperature and Humidity Sensor
    • Servo Motor Control
    • PWM Signal Output
    • PWM Signal Monitoring
    • Hardware PWM Signal Output
    • LED Control
    • Push Button Input
    • Digital I/O
    • Stepper Motor Control
    • High Speed Counter
    • ADS1x15 ADC
    • ADXL345 3-Axis Accelerometer
    • BME280 Temperature, Humidity, Pressure Sensor
    • BMP280 Temperature, Pressure Sensor
    • MLX90614 Infrared Temperature Sensor
    • MCP4725 DAC
    • QMC5883L 3-Axis Magnetometer
    • SHT31 Digital Temperature and Humidity Sensor
    • TCS34725 RGB Color Sensor
    • VEML6070 UV Sensor
    • BH1750 Digital Light Intensity Sensor
    • DS3231 RTC High-Precision Real-Time Clock
    • MPU-9250 9-Axis IMU Sensor
    • CCS811 Carbon Dioxide and TVOC Air Quality Sensor
    • VL53L0X ToF Laser Distance Sensor
    • TFmini Plus(S) LiDAR Distance Sensor
    • MAX7219 8-Digit 7-Segment Display
    • PCF8574 LCD Display Driver
    • HC-SR04 Ultrasonic Distance Sensor
    • LED Brightness Control
    • RGB LED Color Control
    • DC Motor Control
    • AT24C256 EEPROM Memory
    • DHTxx Temperature and Humidity Sensor
    • MCP3xxx ADC
    • LCD Display Driver (MCP23008, MCP23017)
    • MFRC522 RFID Reader
    • Passive Buzzer
    • NeoPixel (WS281x) LED
    • Infrared (IR) Receiver
    • NeoPixel Matrix
    • ST77xx TFT Color LCD
    • ILI9341 TFT Color LCD
    • SSD1306 0.96-inch Monochrome OLED Display
    • SH1106 1.3-inch Monochrome OLED Display
    • MAX7219 8×8 LED Dot Matrix
    • HT16K33 4-Digit 7-Segment Display
    • HX711 Load Cell 24-bit AD Converter
    • TCS3200 RGB Color Sensor
    • MPU6050 6-Axis Gyro Accelerometer
    • TM1637 4-Digit 7-Segment Display
    • PM2008(M) Particulate Matter Sensor
    • PMS x003 Particulate Matter Sensor
    • MAX30102 SpO2 and Heart Rate Sensor
    • AS608, FPM10A Fingerprint Sensor
    • TTP229 Capacitive 16-Key Touch Keypad
    • 4×4 Keypad Matrix
    • Analog to Digital Converter (ADC)
    • Digital to Analog Converter (DAC)
    • RPM Monitor
    • PCA9685 16-Channel 12-Bit PWM Servo Driver
    • INA219 DC Current Sensor
    • VL6180X ToF Distance Sensor
    • Custom Digital Waveform Output
    • NRF24L01 2.4GHz RF Module
  • Folder icon closed Folder open iconBlock Coding
    • General
    • Blocks
      • Values
      • Logic
      • Loop
      • Math
      • Date/Time
      • Text
      • Byte Array
      • List
      • Type Conversion
      • Unit Conversion
      • Science
      • Bit/Byte
      • Complex Numbers/Vectors
      • JSON
      • XML
      • Local Variables
      • Local Functions
  • Folder icon closed Folder open iconConnect & Run
    • Hardware and Operating System
    • Grablo Package Installation
    • Connect and Run

Math

Estimated reading: 3 minutes 283 views

Number

A block that outputs numbers.

  • Input [type]: none
  • Output [type]: value [Number]

​

Constants

Returns the values of constants frequently used in mathematics.
π(3.141…), e (2.718….), φ (1.618….). sqrt(2) (1.414…), sqrt(1⁄2) (0.707…), or ∞ (infinity).

  • Input [type]: none
  • Output [type]: constant value [Number]

​

Arithmetic

Calculates the sum, difference, product, division, or exponentiation of two numbers.

  • Input [type]: value1 [Number], value2 [Number]
  • Output [type]: calculated value [Number]

​

Remainder

Returns the remainder from dividing the two numbers.

  • Input [type]: value1 [Number], value2 [Number]
  • Output [type]: remainder [Number]


Round

Rounds a number to a specified number of decimal places.
Example: round 1.234 to 1 decimal place → 1.2

  • Input [type]: number [Number], decimal places [Number]
  • Output [type]: rounded number [Number]

​

Split Decimal

Separates a number into its integer and fractional parts.
Example: 1.234 → [1, 0.234]

  • Input [type]: number [Number]
  • Output [type]: [integer part, fractional part] array [List]

​

Square Root, Absolute Value, Logarithm, Exponentiation

Calculates the square root, absolute value, negative, natural logarithm (ln), common logarithm (log), e to the power (e^), or 10 to the power (10^) of the input value.

  • Input [type]: value [Number]
  • Output [type]: calculated value [Number]

​

nth Root

Calculates the nth root of a number.
When n=2: square root, n=3: cube root.
Example: 3rd root of 8 → 2

  • Input [type]: base number [Number], root index [Number]
  • Output [type]: nth root [Number]

​

Reciprocal

Calculates the reciprocal (1 divided by the number).
Example: reciprocal of 4 → 0.25

  • Input [type]: number [Number]
  • Output [type]: reciprocal [Number]

​

Trigonometric Functions

Calculates trigonometric function values (sin, cos, tan, asin, acos, atan) of the input value.
The input unit for sin, cos, tan functions is degrees, and the output unit for asin, acos, atan functions is radians.

  • Input [type]: angle [Number]
  • Output [type]: trigonometric function value [Number]

​

Hyperbolic Functions

Calculates hyperbolic function values.
sinh: hyperbolic sine, cosh: hyperbolic cosine, tanh: hyperbolic tangent
Input value unit is radians.

  • Input [type]: angle [Number]
  • Output [type]: hyperbolic function value [Number]

​

Constrain

Constrains the input value between minimum and maximum values.
Example: constrain 105 to minimum 1, maximum 100 → 100

  • Input [type]: input value [Number], minimum value [Number], maximum value [Number]
  • Output [type]: constrained value [Number]

​

Random Integer

Returns a random integer between the two specified limits, inclusive.

  • Input [type]: minimum value [Number], maximum value [Number]
  • Output [type]: random integer [Number]

​

Random Fraction

Returns a random fraction between 0.0 (inclusive) and 1.0 (exclusive).

  • Input [type]: none
  • Output [type]: random fraction [Number]

​

Number Properties

Checks if the input value is even, odd, prime, whole, positive, negative, or divisible by a certain number.

  • Input [type]: value [Number]
  • Output [type]: property match [Digital]

​

Range Check

Checks if a value falls within a specified range.
You can choose inequality operators to control boundary inclusion.

  • Input [type]: minimum value [Number], test value [Number], maximum value [Number]
  • Output [type]: within range [Digital]

​

Linear Scale

Maps an input value from one range to another (linear transformation).
If constrain is true, output is clamped to the output range.
Example: map 3 from [0, 10] to [0, 100] → 30

  • Input [type]: input value, input min, input max, output min, output max, constrain flag
  • Output [type]: mapped value [Number]

​

Coordinate Conversion

Converts coordinates between Cartesian and polar systems.
Cartesian: (x, y), Polar: (radius, angle)
Angle is in radians.

  • Input [type]: coordinate1 [Number], coordinate2 [Number]
  • Output [type]: converted coordinates [List]

​

List Operations

Performs calculations on the numbers in the list and returns the result.
(sum, minimum, maximum, average, median, mode, standard deviation, random item)

  • Input [type]: list [List]
  • Output [type]: calculated value [Number]

찾으시는 내용이 없나요? 문의하기

문의하기

공유하기

Math

Or copy link

Clipboard Icon
콘탠츠

ㅤ

Grablo Inc.
support@grablo.co

Site Links

  • Grablo Home
  • Grablo App

이 사이트의 모든 컨텐츠는 저작권법에 보호받는 저작물로서, 무단으로 복제, 배포하는 경우에는 저작권법에 의하여 처벌을 받을 수 있습니다. Copyright 2024 grablo.co. All Rights Reserved.