Chaging the outupt integers

I have a code here
M=256;
N=256
A=fix(2*rand(M,N));
And right now the output either is zero or one. Well I want the output to be either 1 or -1. Can anyone help me as to how to change this. Thank you, I'm quite new to matlab.

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 25일
편집: Azzi Abdelmalek 2013년 2월 25일

0 개 추천

M=256;
N=256
A=fix(2*rand(M,N));
A(A==0)=-1

댓글 수: 2

Jakub
Jakub 2013년 2월 25일
Sweet thank you, it works perfectly :)
Azzi Abdelmalek
Azzi Abdelmalek 2013년 2월 25일
편집: Azzi Abdelmalek 2013년 2월 25일
You can also use
A=sign(rand(M,N)-0.5)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터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!

Translated by