how to create a square matrix with unique real values?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello, I want a random square matrix of size 10*10, where each row must contain random values from 1 to 10...
댓글 수: 0
채택된 답변
추가 답변 (1개)
Jos (10584)
2018년 2월 21일
편집: Jos (10584)
2018년 2월 21일
A very simple one-liner will do the trick:
N = 10 ;
[~, A] = sort(rand(N), 2)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!