This file contains 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
>>> liitot.table(PS, KOK, KD, SDP, VIHR, KESK + RKP, VAS) | |
Olli Rehn (KESK-RKP) 455821 | |
Alexander Stubb (KOK) 390112 | |
Paavo Väyrynen (KESK-RKP) 227910 | |
Jussi Halla-aho (PS) 222102 | |
Liisa Jaakonsaari * (SDP) 212211 | |
Sirpa Pietikäinen * (KOK) 195056 | |
Heidi Hautala (VIHR) 160967 | |
Merja Kyllönen (VAS) 160818 | |
Anneli Jäätteenmäki * (KESK-RKP) 151940 |
This file contains 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
package main | |
import ( | |
"code.google.com/p/gomatrix/matrix" | |
"fmt" | |
"log" | |
) | |
func solve(x, b *matrix.DenseMatrix) (y *matrix.DenseMatrix, err error) { | |
if x.Cols() > x.Rows() { |