Last active
August 29, 2015 13:58
-
-
Save JohanLarsson/9991001 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| clear; // What is the command to clear the scilab console? | |
| A=[1,0,0,-3; | |
| 0,1,0,4; | |
| 0,0,1,5; | |
| 0,0,0,1] | |
| x=[1,0,0,0,2; | |
| 0,1,0,0,0; | |
| 0,0,1,0,3; | |
| 1,1,1,1,3] | |
| y=A*x | |
| A_solved=(x'\y')' // Transposing like this does not feel right |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment