gsl-shell-info
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gsl-shell-info] matrix operations


From: John Coppola
Subject: [Gsl-shell-info] matrix operations
Date: Tue, 20 Nov 2012 22:45:42 -0500

hello,

i have a couple of questions on some matrix operations that i could not figure out from the documentation...

1. is there a way to combine matrices?  for example in matlab you can combine two matrices with something like this...

  A = [1 1; 1 1]
  B = [2 2; 2 2]
  C = [A B] ---> C = [1 1 2 2; 1 1 2 2]
  C = [A;B] ---> C = [1 1; 1 1; 2 2; 2 2]

...is there an easy way to do this with GSL-shell?

2. is there a built-in command to get the sum, average, and standard deviation of the elements of a matrix?


thanks,
-j

reply via email to

[Prev in Thread] Current Thread [Next in Thread]