필터 지우기
필터 지우기

Change input user 0 to -1

조회 수: 4 (최근 30일)
Soveatin Kuntur
Soveatin Kuntur 2021년 5월 10일
댓글: Soveatin Kuntur 2021년 5월 10일
I want to make some program which required input from user. I want to make the program works this way
for example if user input : x = [1 1 1; 0 1 1; 0 0 0; 1 1 0;] then matlab will automatically change it into x = [1 1 1; -1 1 1; -1 -1 -1; 1 1 -1;] before processing it to some formula

채택된 답변

David Fletcher
David Fletcher 2021년 5월 10일
x = [1 1 1; 0 1 1; 0 0 0; 1 1 0;]
x(x==0)=-1

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by