跳到主要內容

[Matrix] 矩陣與向量乘積

最近對線性代數應用感興趣,開始研究線性代數運算的底層程式實作。
先從矩陣乘積開始。
在此用 C++ 做矩陣與向量的乘積。

我們定義以下的矩陣 Class:

    template <class T, size_t, size_t j>
    class mtx
    {
    public:
       mtx(){}
       ~mtx(){}

       inline T& operator()(size_t i, size_t j)
       {
            return arr_[i][j];
       }
       void info()
       {
            cout << endl;
            for(size_t i = 0; i < ROWS; i++)
            {
                for(size_t j = 0; j < COLS; j++)
                    cout << " " << arr_[i][j];
                cout << endl;
            }
            cout << endl;
       }

    private: 
       T arr_[ROWS][COLS];
    };

接著我們就可以使用此 Class 來做矩陣與向量乘積:
    mtx a;
    mtx x;
    mtx b;

    a(0, 0) = 2;
    a(0, 1) = 1;

    a(1, 0) = 3;
    a(1, 1) = 5;

    a(2, 0) = 4;
    a(2, 1) = 7;

    x(0, 0) = 10;
    x(1, 0) = 12;
    
    // matrix mul:
    for(size_t r = 0; r < 3; r++)    b(r, 0) = 0;

    for(size_t i = 0; i < 3; i++)
    {
        for(size_t j = 0; j < 2; j++)
            b(i, 0) = b(i, 0) + a(i, j) * x(j, 0);
    }

    cout << " a:" << endl;
    a.info();
    cout << " x:" << endl;
    x.info();
    cout << " ax = b, b:" << endl;
    b.info();

執行結果
 a:

 2 1
 3 5
 4 7

 x:

 10
 12

 ax = b, b:

 32
 90
 124

做乘法的部份,重點在這段 Code:
    for(size_t r = 0; r < 3; r++)    b(r, 0) = 0;

    for(size_t i = 0; i < 3; i++)
    {
        for(size_t j = 0; j < 2; j++) // row 水平方向掃描
            b(i, 0) = b(i, 0) + a(i, j) * x(j, 0);
    }

這段 Code 在執行 ax = b 的矩陣乘積。這種寫法視 a 矩陣跟向量 x 做內積。
若把兩個 for 迴圈對調,變成 x 內的每個元素,先對 a 矩陣的 column vector 內每個分量先相乘,我們觀看一下寫法:
    for(size_t r = 0; r < 3; r++)    b(r, 0) = 0;

    for(size_t j = 0; j < 2; j++)
    {
        for(size_t i = 0; i < 3; i++) // column 垂直方向掃描
            b(i, 0) = b(i, 0) + a(i, j) * x(j, 0);
    }

兩種寫法的執行結果相同。但執行速度根據矩陣儲存方式會有差異,因為二維陣列在記憶體內儲存方式,是同 row 的值存在同一區域。
因此我推論:
上述第二種寫法在 a 矩陣有很多個 row 時,執行速度較慢,因為內層迴圈讓 a 矩陣取值一次跳一個 row。
而第一種寫法,內層迴圈只讓 a 取值一次跳一個 column,在相鄰記憶體位置取值。而對於 x 和 b 向量而言,都是在相鄰記憶體位置讀寫。

我之後會補充矩陣向量乘積執行速度的實驗在此。


留言

這個網誌中的熱門文章

[程式競賽] UVa 572, Oil Deposits,Flood Fill 演算法

原題目簡述如下: 以 m x n 大小的 grid 代表一張地圖,現今要在此地圖內探勘,找出油田。某一區塊如果標示 "@" 代表有油,"*" 代表沒有油。 "@" 相鄰的區域的聯集,可視為一個油田。(所謂相鄰,除了上下左右,斜向的相鄰也算進去) 求任意地圖中,油田的個數。 例如輸入的測資為: *    *   *    *  @ *   @  @  *  @ *   @   *   *  @ @ @  @   * @ @ @   *   *  @ 則油田個數為 2。 想法 採用典型的倒水演算法(Flood Fill),走訪 "@" 出現的區域,從此往下倒水,倒過水的區域標上 id,因此透過 id 的編號,可以得知油田的個數。 實作 先實作倒水演算法的子函式: void floodfill(vector<vector<char> >& map,                vector<vector<int>  >& id_table,                int row, int col, int id) {    if(row < 0 || (row >= map.size()) )   return;    if(col < 0 || (col >= map[0].size())) return;    if(map[row][col] != '@' || id_table[row][col] > 0) return;    id_table[row][col] = id;    floodfill(map, id_table, row-1, col-1, id);    floodfill(map, id_table, row-1, col,   id);    floodfill(map, id_table, row-1, col+1, id);    floodfill(map, id_table, row,   col-1, id);    floodfill(map, id_table, row,   col+1,

[Python] print 同時輸出到 file 和 console

在 Python 撰寫程式時,我們會希望螢幕 stdout 輸出可以同時記錄到 log 檔案裡。 但是螢幕輸出可能含有 ASCII escape codes 的顏色資訊,輸出的 log 檔案會有類似 ^[[01;32m 這種字樣出現。 我採用比較簡單的解法: 先將 print 函式輸出的訊息,同時導向到螢幕,同時儲存在指定的 log.txt 檔案中。 再用 sed 指令,將 log.txt 內的 ASCII escape code 清除。 方法如下: import sys class PrintLog(object): def __init__(self): self.console = sys.stdout self.log_file = open("log.txt", "w") def write(self, msg): self.console.write(msg) self.log_file.write(msg) def flush(self): pass def main(): original_stdout = sys.stdout sys.stdout = PrintLog() print " This is a testing message." sys.stdout = original_stdout if(__name__ == "__main__"): main() 也就是將 sys.stdout 指向自定義的 PrintLog class,讓 PrintLog 來處理輸出文字,用完 PrintLog 後再把 sys.stdout 導向回原本的 stdout。 接著使用 sed 指令刪除 log.txt 的 ASCII escape code: sed -i 's/\x1b[^m]*m//g' ./log.txt 上面的正規,\x 後面用來接一個 16 進位 ASCII 編碼,其中 1b 代表的是 ESC 退出鍵。 到此即可獲得沒有顏色編碼的 log.tx

[Python] 單引號,雙引號和三引號

在此解釋各種引號的意義。 雙引號跟單引號,在 Python 中的基本上沒差別,都可以代表字串: "This is a string" 'This is a string' 並且雙引號內可包含單引號,反之,如果用的是單引號,則單引號內可包含雙引號: "We call it 'Dog'...... " 'We call it "Dog"...... ' 三個雙引號,就可以直接輸入有換行的字串: """haha, this is a dog.""" 三個單引號要換行,就要輸入"\": '''haha, \ this is a dog.'''