Expression of Matrix (C.Basic)
Expression of Matrix
This content is checked by fx-9860GII (OS 2.04).
This is on-going project, any changes may be made.
Model
fx-9860G Series
Description
i. A standard expression of matrix is Mat A[ ] which also can be used in Casio Basic.
ii. C.Basic provides an extended expresison using a small letter for matrix, like Mat a[ ].
iii. C.Basic provides a shorter expression for matrix, like A[ ], a[ ], &A[ ] or $a[ ].
iv. Be carefle about using tis abbreviated expression.
Instead of following standard expression;
{<row>,<column>}→Dim Mat A
[[<E11>,<E12>,...][<E21,E22>,...]...]→Mat a.
Mat A→Dim Mat A.x (x = p, v, b, l, f)
those below cannot be used;
{<row>,<column>}→Dim A
[[<E11>,<E12>,...][<E21>,<E22>,...]...]→a.
A→Dim A.x (x = p, v, b, l, f)
Example 1
[[1,2,3,4][5,6,7,8]]→Mat A.b
Locate 1,1,ElmSize(A)
Mat A→Dim Mat A.w
Locate 1,2,ElmSize(A)
This code display as follows;
8
16
The first and third line cannot be converted to abbreviated expression. But the second and fourth line use shorter expresison of Mat A.
Copyright (C) 2013 - 2016 Krtyski / egadget.blog.fc2.com All Rights Reserved.
- 関連記事
-
-
C.Basic Command Reference 2014/08/01
-
VRAM Access by 1bit Matrix 2014/08/01
-
Expression of Matrix (C.Basic) 2014/08/01
-
Type of Matrix (C.Basic) 2014/08/01
-
Type of Number (C.Basic) 2014/08/01
-