|
kmatrice
Linear Algebra
[en] [es] [de] [ja] [cn] [ru] [it] [pt]
|
[k]
|
The manual is in constant upgrade, today only is
aviable the html version but in the future will be aviable the pdf and
txt version.
|
- INTRODUCTION
- ENTER A MATRIX
- SUM OF MATRIX
- REST OF MATRIX
- MULTIPLY OF MATRIX
- DETERMINANT OF A MATRIX
- INVERSE MATRIX
- MULTIPLY A MATRIX BY A NUMBER
- TRANSPUESTA MATRIX
- THE TRAZA OF A MATRIX
- GENERATE A RANDOM MATRIX
- MATRIX IDENTITHY
- THE SHOW COMMAND
- THE EQUAL COMMAND
- THE HELP COMMAND
- THE QUIT COMMAND
- kmatrice
is a software for help to learn and understand the Linear Algebra, is
an educational program and is written in C you can run in all Operating
Systems. In the future will be a code review and will be a port to
pascal to fusion it with kalcula
for offer a
better software.
- Enter a matrix is easy, first the name and then the
number of rows and columns.
- The element will be entered by row.
- Sintaxis:
- kmatrice>>matrix name
- kmatrice>>A
- number of rows: m
- number of cols: n
- Enter the elements by row.
|

|
- Sintaxis:
- kmatrice>>sum matrix name matrix name
- kmatrice>>sum A B
- Do you want assign the result to another matrix
(y/n)?y
- Write the matrix name: C
|

|
- Sintaxis:
- kmatrice>>rest matrix name matrix name
- kmatrice>>rest A B
- Do you want assign the result to another matrix
(y/n)?y
- Write the matrix name: C
|

|
- Amxn * Bnxp = Cmxp.
- Sintaxis:
- kmatrice>>mult matrix name matrix name
- kmatrice>>mult A B
- Do you want assign the result to another matrix
(y/n)?y
- Write the matrix name: C
|

|
- The inverse matrix by Gauss-Jordan.
- Sintaxis:
- kmatrice>>inver matrix name
- kmatrice>>inver A
- Do you want assign the result to another matrix
(y/n)?y
- Write the matrix name: invA
|

|
- The determinant of a matrix by Gauss-Jordan.
- Sintaxis:
- kmatrice>>deter matrix name
- kmatrice>>deter A
|

|
- Sintaxis:
- kmatrice>>escal number matrix name
- kmatrice>>escal 4.5 A
- Do you want apply the transformation (y/n)?n
- Do you want assign to another matrix (y/n)?y
- Write the matrix name: B
|

|
- Sintaxis:
- kmatrice>>trans matrix name
- kmatrice>>trans A
- Do you want apply the transformation (y/n)?n
- Do you want assign the result to another matrix
(y/n)?y
- Write the matrix name: B
|

|
- Sintaxis:
- kmatrice>>traza matrix name
- kmatrice>>traza A
|

|
- With the rand function you can generate a matrix with
random elements.
- Sintaxis:
- kmatrice>>rand
- Do you want to generate a random matrix (y/n)?y
- Write the matrix name: A
- Enter the number of rows (integer): 4
- Enter the number of cols (integer): 6
- Enter the range number: 100
|

|
- Sintaxis:
- kmatrice>>ident matrix name n
- kmatrice>>ident A 9
- Generate a matrix with name A and dimension 9x9;
[A]9x9
|

|
- The command show print all matrices typed in a kmatrice
session.
- Sintaxis:
- The equal command copy a matrix to another matrix, both
typed in a session.
- Sintaxis:
- kmatrice>>equal matrix name matrix name
- kmatrice>>equal B A
- Copia A to B, the matrix B will be equal to A.
- The help command show information about the command of
kmatrice.
- Sintaxis:
- The quit command end the application.
- Sintaxis:
- kmatrice>>quit
- kmatrice>>q
|