Replace Values using For Loops

조회 수: 10 (최근 30일)
Angie
Angie 2018년 2월 8일
편집: Birdman 2018년 2월 8일
I am brand new to Matlab-I have a data matrix that is 128x128 and I would like to use a for loop to access every element of the data matrix, and replace every value higher than 60 with 1 and every value less than 60 by 0. I would appreciate your help. Thanks!

채택된 답변

Birdman
Birdman 2018년 2월 8일
편집: Birdman 2018년 2월 8일
You don't need a for loop for this.
a=randi([1 120],128,128);%demo data
a(a>60)=1;
a(a<=60)=0;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by