+x | Unary plus |
-x | Unary minus |
x+y | Addition |
x-y | Subtraction |
x*y | Multiplication |
x/y | Division |
x%y | Modulo (remainder of division) |
x^y | Power |
!x | Negation |
x&&y | And |
x||y | Or |
x^^y | Exclusive or |
x?y:z | Abbreviation for conditional expression "if x then y else z" |
x==y | Equal |
x!=y | Not equal |
x<y | Less than |
x<=y | Less than or equal |
x>y | Larger than |
x>=y | Larger than or equal |
adjoint(x) | Adjoint matrix of x (transposed and conjugate complex) |
det(x) | Determinant of a matrix x |
inverse(x) | Inverse matrix of x |
transpose(x) | Transposed matrix of x (rows and columns exchanged) |
exp(x) | Exponential function to basis e |
limexp(x) | Limited exponential function |
log10(x) | Decimal logarithm |
log2(x) | Binary logarithm |
ln(x) | Natural logarithm (base e ) |
cos(x) | Cosine function |
cosec(x) | Cosecant |
cot(x) | Cotangent function |
sec(x) | Secant |
sin(x) | Sine function |
tan(x) | Tangent function |
cosh(x) | Hyperbolic cosine |
cosech(x) | Hyperbolic cosecant |
coth(x) | Hyperbolic cotangent |
sech(x) | Hyperbolic secant |
sinh(x) | Hyperbolic sine |
tanh(x) | Hyperbolic tangent |
ceil(x) | Round to the next higher integer |
fix(x) | Truncate decimal places from real number |
floor(x) | Round to the next lower integer |
round(x) | Round to nearest integer |
LO:HI | Range from LO to HI |
:HI | Up to HI |
LO: | From LO |
: | No range limitations |
M | The whole matrix M |
M[2,3] | Element being in 2nd row and 3rd column of matrix M |
M[:,3] | Vector consisting of 3rd column of matrix M |
2.5 | Real number |
1.4+j5.1 | Complex number |
[1,3,5,7] | Vector |
[11,12;21,22] | Matrix |
E | exa, * 1e+18 |
P | peta, * 1e+15 |
T | tera, * 1e+12 |
G | giga, * 1e+9 |
M | mega, * 1e+6 |
k | kilo, * 1e+3 |
m | milli, * 1e-3 |
u | micro, * 1e-6 |
n | nano, * 1e-9 |
p | pico, * 1e-12 |
f | femto, * 1e-15 |
a | atto, * 1e-18 |
S[1,1] | S-parameter value |
nodename.V | DC voltage at node nodename |
name.I | DC current through component name |
nodename.v | AC voltage at node nodename |
name.i | AC current through component name |
nodename.vn | AC noise voltage at node nodename |
name.in | AC noise current through component name |
nodename.Vt | Transient voltage at node nodename |
name.It | Transient current through component name |
i, j | Imaginary unit ("square root of -1") |
pi | 4*arctan(1) = 3.14159... |
e | Euler = 2.71828... |
kB | Boltzmann constant = 1.38065e-23 J/K |
q | Elementary charge = 1.6021765e-19 C |