dispmtx

버전 1.0.0.0 (881 Bytes) 작성자: Aslak Grinsted
Display a matrix in a nicely formatted way.
다운로드 수: 1.9K
업데이트 날짜: 2005/3/29

라이선스 없음

Show the contents of a matrix in a nicely formatted way with headers.

USAGE: dispmtx(M,fmt,colsize,[colhead{:}],[rowread{:}])

Example: dispmtx(randn(3,2),'%.2f',7,{'c1' 'c2'},{'r1' 'r2' 'r3'})

Warning: not fast...

Aslak Grinsted apr2004

EXAMPLE:

>> dispmtx(randn(3,2),'%.2f',7,{'c1' 'c2'},{'r1' 'r2' 'r3'})
c1 c2
r1 1.19 0.17
r2 -0.04 -0.19
r3 0.33 0.73
>>

인용 양식

Aslak Grinsted (2024). dispmtx (https://www.mathworks.com/matlabcentral/fileexchange/5729-dispmtx), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

Made fmt and colsize optional arguments.