In Matlab practice matrix operations with for loops. Create a random matrix 10*10 in size, e.g. A=rand(10); Then use two for loops (nested for loops) to “survey” each element in each column and row and do the following operations: (a) Add all the elements together; (b) When the element is smaller than 0.5, set it to zeros; When the element is larger or equal to 0.5, set it to ones.
In Matlab practice matrix operations with for loops. Create a random matrix 10*10 in size, e.g. A=rand(10); Then use two for loops (nested for loops) to “survey” each element in each column and row and do the following operations: (a) Add all the elements together; (b) When the element is smaller than 0.5, set it to zeros; When the element is larger or equal to 0.5, set it to ones.
Algorithm :
Step 1 : create random 10*10 matrix.
Answer a)
Step 1 : initialize variable to 0.
Step 2 : use nested for loops to add the elements of the matrix.
Answer b)
Step 1 : use nested for loop.
Step 2 : check if element in matrix less than 0.5 and set it to 0.
Step 3 : else element is larger than or equal to 0.5 and set it to 1.
Step by step
Solved in 4 steps with 5 images