Skip to content

Instantly share code, notes, and snippets.

@JohanLarsson
Last active August 29, 2015 13:58
Show Gist options
  • Save JohanLarsson/9991001 to your computer and use it in GitHub Desktop.
Save JohanLarsson/9991001 to your computer and use it in GitHub Desktop.
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