Generating a new matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
Let A be a matrix A = rand(4) For all values of A >=0.5, A = 1 else A = 0
now I want to generate a new matrix Alpha..... for which all values of A which are 1 they should have value 0 in Alpha matrix and for all zero values of matrix A the Alpha should have value "pi"
Let A = [1,0;0,0] Alpha should be [0,pi;pi,pi]
Thanks for helpers....... hope i made you understand what i want.... Regards
댓글 수: 0
채택된 답변
Andrei Bobrov
2016년 9월 16일
편집: Andrei Bobrov
2016년 9월 16일
A = rand(4) >= .5;
Alpha = ~A * pi;
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Denoising and Compression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!