Help!!!!!!!! How to replace all the zeros in an array with -1?

21 views (last 30 days)
X = [1 0 0 0 1 0 0 1 1 0 1 0 1 1 1] i want to replace all zeros with -1 in array. anybody can help ?

Accepted Answer

KSSV
KSSV on 16 Apr 2018
X(X==0) = -1 ;

More Answers (1)

Stephen23
Stephen23 on 16 Apr 2018

Categories

Find more on Test and Measurement in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!