.AdvancedNoise.Math.factorial

Information

Syntax

f = Math.factorial(n);

Description

This function returns product of all positive integers less then or equal to input n.

Example

factorial(5);
// = 120
factorial(0);
// = 1

Interface

function factorial
  extends Modelica.Icons.Function;
  input Integer n(min = 0) "Positive integer";
  output Integer f "Factorial of n";
end factorial;

Revisions

DLR logo Developed 2014 at the DLR Institute of System Dynamics and Control

Generated at 2024-10-17T18:25:27Z by OpenModelicaOpenModelica 1.24.0 using GenerateDoc.mos