Programmer Guide/Command Reference/EVAL/init: Difference between revisions
From STX Wiki
< Programmer Guide | Command Reference | EVAL
Jump to navigationJump to search
No edit summary |
No edit summary |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:{{SUBPAGENAME}}}} | {{DISPLAYTITLE:{{SUBPAGENAME}}}} | ||
Create a vector or a matrix and initialize it with a particular value. | Create a vector or a matrix and initialize it with a particular value. | ||
;Usage: <code>init(<var> | ;Usage: <code>init(<var>n</var> {, <var>m</var> {, <var>v</var>}})</code> | ||
:;<var>n</var>: number of rows, ''n''>1 | |||
:;<var>m</var>: number of columns, ''m''≥1 (default='''1''') | |||
:;<var>v</var>: initialization value (default='''0''') | |||
:All arguments are scalars! | |||
;Result: The result is a numerical object with ''n'' rows and ''m'' columns. All elements are set to ''v''. | |||
;See also: [[../fill|fill]], [[../rand|rand]] | |||
[[../#Functions|<function list>]] | |||
Latest revision as of 19:17, 21 April 2011
Create a vector or a matrix and initialize it with a particular value.