slicing.cpp

来自「c++经典教材 Blitz++ v0.8」· C++ 代码 · 共 43 行

CPP
43
字号
/***************************************************************************** * slicing.cpp        Blitz++ Array slicing & subarrays example *****************************************************************************/#include <blitz/array.h>BZ_USING_NAMESPACE(blitz)int main(){    Array<int,2> A(6,6), B(3,3);      // Set the upper left quadrant of A to 5     A(Range(0,2), Range(0,2)) = 5;     // Set the upper right quadrant of A to an identity matrix    B = 1, 0, 0,        0, 1, 0,        0, 0, 1;    A(Range(0,2), Range(3,5)) = B;    // Set the fourth row to 1#ifdef BZ_HAVE_PARTIAL_ORDERING    A(3, Range::all()) = 1;#else    cout << "Warning: your compiler does not support partial ordering of"         << endl << "member templates; using kludge." << endl;    A(Range(3,3), Range::all()) = 1;#endif    // Set the last two rows to 0    A(Range(4, toEnd), Range::all()) = 0;    // Set the bottom right element to 8    A(5,5) = 8;    cout << "A = " << A << endl;    return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?