.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-07-26T18:16:02Z by OpenModelicaOpenModelica 1.23.1 using GenerateDoc.mos