how to insert diganole of zeros in to matrix without using loops ?

2 views (last 30 days)
my question is simple how to change the main diagonel of nXn of random numers and change the main diagonle to zeroes ?
without using loops ?

Accepted Answer

madhan ravi
madhan ravi on 3 Mar 2019
a(logical(eye(size(a,1))))=0 % where a is your matrix
  2 Comments
tomer polsky
tomer polsky on 3 Mar 2019
thank you for your help but why did you use the logical command ?
madhan ravi
madhan ravi on 3 Mar 2019
Edited: madhan ravi on 3 Mar 2019
logical indexing
Alternative (faster):
a(1:size(a,1)+1:end)=0

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!