forked from stdlib-js/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrepl.txt
More file actions
32 lines (23 loc) · 682 Bytes
/
repl.txt
File metadata and controls
32 lines (23 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{alias}}( x[, locales[, options]] )
Serializes an ndarray as a locale-aware string.
This function does *not* serialize data outside of the buffer region
defined by the ndarray view.
Parameters
----------
x: ndarray
Input ndarray.
locales: string|Array<string> (optional)
A BCP 47 language tag or an array of such strings.
options: Object (optional)
Configuration options.
Returns
-------
out: string
String representation.
Examples
--------
> var arr = {{alias:@stdlib/ndarray/array}}( [ [ 1, 2 ], [ 3, 4 ] ] );
> var out = {{alias}}( arr )
<string>
See Also
--------