📄 output.html
字号:
<HTML><HEAD><TITLE>Newmat09 - output</TITLE></HEAD><BODY><H2>Output</H2><A HREF="unspec.html"> next</A> - <A HREF="unspec.html"> skip</A> - <A HREF="refer.html"> up</A> - <A HREF="index.html"> start</A><P>To print a matrix use an expression like<PRE> Matrix A; ...... cout << setw(10) << setprecision(5) << A;</PRE>This will work only with systems that support the standard input/outputroutines including manipulators. You need to #include the filenewmatio.h.<P>The present version of this routine is useful only for matrices small enoughto fit within a page or screen width.<P>To print several vectors or matrices in columns use a<A HREF="binary.html">concatenation operator</A>:<PRE> ColumnVector A, B; ..... cout << setw(10) << setprecision(5) << (A | B);</PRE></BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -