📄 main.cpp
字号:
/*****************************************************************************//* noname *//*****************************************************************************///====================================================================[include]#include <iostream>#include <cstdlib>#include <ctime>#include "cpplapack.h"using namespace std;//=======================================================================[main]/*! main */int main(int argc, char** argv){ srand(time(NULL)); int M(4), N(3), KL(1), KU(2); CPPL::dgbmatrix A(M,N,KL,KU); for(int i=0; i<A.m; i++){ for(int j=0; j<A.n; j++){ if(!( i-j>A.kl || j-i>A.ku )){ A(i,j) =double( rand() /(RAND_MAX/10) ); } }} cout << "A =\n" << A << endl; cout << "A*10. =\n" << A*10. << endl; cout << "A/10. =\n" << A/10. << endl; cout << "#### A*=10.; ####" << endl; A*=10.; cout << "A =\n" << A << endl; cout << "#### A/=10.; ####" << endl; A/=10.; cout << "A =\n" << A << endl; return 0;}/*****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -