Content deleted Content added
Jerryobject (talk | contribs) Small WP:COPYEDITs WP:EoS WP:TERSE, MOS:NOTETHAT cut. WP:LINKs: update-standardizes, needless WP:PIPEs > WP:NOPIPEs, adds. |
Add Julia examples to the table of mathematical matrix operations. |
||
Line 934:
| {{code|shape(m,1)}}
| {{code|eigen(output, m, NULL)}}
|-
| [[Julia_(programming_language)|Julia]] and its standard library<br/> {{code|LinearAlgebra}}
| {{code|lang=julia|code=m = [1 2; 3 4]}} or
<syntaxhighlight lang="julia">
m = [
1 2
3 4
]
</syntaxhighlight>
| {{code|lang=julia|det(m)}}
| {{code|lang=julia|transpose(m)}}
| {{code|lang=julia|m[i, j]}}
| {{code|lang=julia|m[:, j]}}
| {{code|lang=julia|m[i, :]}}
| {{code|lang=julia|eigen(m).values}}
|-
| [[Mathematica]] /<br/>[[Wolfram Language]]
|