Create a matrix whereas values can be -180 0 or 200
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello
Is like the title says: i would be able to create a certain matrix 1:24 where i can only have -180, 0 or 200 sort randomly.
P.E.
[-180 200 0 0 0 200 200 -180 -180 0 ....]
Thanks in advance
댓글 수: 0
채택된 답변
Laura Proctor
2012년 12월 18일
I'm sure there's a more elegant solution, but here's one:
x = randi(3,1,24)-1;
x(x==1) = -180;
x(x==2) = 200;
댓글 수: 0
추가 답변 (1개)
Image Analyst
2012년 12월 18일
Try this:
a = int16(randi(3, 1, 24))
a(a==1) = -180;
a(a==2) = -0;
a(a==3) = -200;
댓글 수: 1
Image Analyst
2012년 12월 18일
For a more general solution you can use intlut(), in the Image Processing Toolbox.
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!