Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.1.1 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Scilab > Scilab keywords > percent

percent

(%) special character

Description

Some predefined variables names begin with %, such as %i (for sqrt(-1)), %inf (for Infinity), %pi (for 3.14...), %T (for the boolean constant "true"),...

In addition, functions whose names begin with % are special : they are used for primitives and operators overloading.

For example the function %r_m_r performs the multiplication (m) operation x*y for x and y rational matrices (r). The coding conventions are described in the overloading help page.

Examples

x1 = tlist('x',1,2);
x2 = tlist('x',2,3);
deff('x = %x_m_x(x1,x2)','x = list(''x'', x1(2)*x2(2), x2(3)*x2(3))');
x1 * x2

See also

  • overloading — display, functions and operators overloading capabilities
  • names — Naming rules for variables and functions
  • symbols — scilab operator names
  • printf_conversion — mprintf, msprintf, mfprintf C-format specifications
Report an issue
<< parentheses Scilab keywords plus (+) >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Mon Jan 03 14:23:19 CET 2022