我試圖熟悉Ruby中的矩陣。我正嘗試使用字符串格式的輸入來初始化矩陣。我嘗試了下面的代碼,但它不工作。請幫助我做錯了什麼。紅寶石矩陣運算
input =
'08 02 22 97
49 49 99 40
81 49 31 73
52 70 95 23'
x = Matrix.rows(input.lines() { |substr| substr.strip.split(//) })
puts x[0,0] #I expect 8. but I am getting 48 which is not even in the matrix
我猜我沒有正確初始化矩陣。請幫幫我。
由於它的工作大!! – bragboy 2010-08-21 09:12:23