Equana

Function Reference

Under the HoodFeaturesTutorialsDocs
Docs/Core Functions/char

Packages

Core Functions
72 functions
Free
Linear Algebra
24 functions
Free
Fourier Analysis
14 functions
Free
Data Visualization
40 functions
Free
Polynomial Functions
100 functions
Free
Symbolic Mathematics
10 functions
Free
3D Visualization (VTK)
18 functions
Free
Sparse Matrices
25 functions
Free
Finite Element (MFEM)
407 functions
Free
Scientific Computing (SciPy)
74 functions
Free
Numerical Arrays (NumPy)
602 functions
Free
ODE Solvers
20 functions
Free
Symbolic Math (SymEngine)
159 functions
Free
Linear Algebra (Eigen)
247 functions
Free
Numerical Integration (QUADPACK)
25 functions
Free
Eigenvalue Solvers (ARPACK)
85 functions
Free
LAPACK/BLAS
98 functions
Free
Sparse Direct Solver (SuperLU)
123 functions
Free
Special Functions
85 functions
Free
Back to Core Functions

char

Convert to character

Syntax

c = char(n)

Description

Converts numeric code to character, or ensures input is a character array.

Parameters

NameDescription
nNumeric ASCII/Unicode code or string

Returns

Character string

Examples

Try It
>> char(65)
'A'
Try It
>> char([72 101 108 108 111])
'Hello'

See Also

double