Question: 4.1 Write a function called checkmat_even_odd' that will receive a matrix (for example, mat) as an input argument, and return a new matrix (same
4.1 Write a function called "checkmat_even_odd' that will receive a matrix (for example, mat) as an input argument, and return a new matrix (same size with the input matrix) using nested for loops. If the element in the input matrix is an even number, then the corresponding element in the new matrix is 0; otherwise, the element in the new matrix is 1. Also, write the block comment "This function check the even/odd number of a matrix." See below example: mat= 1 -2 3 -4 -5 6 -7 8 9 10 11 -12 outmat= 1 1 1 0 0 1 0 1 0 0 1 0 4.2 Generate a random 3-by-5 integer matrix called "mat" in the range [-10, 10], and test your code, for example: [outmat] = checkmat_even_odd(mat)
Step by Step Solution
There are 3 Steps involved in it
Below is the c program for the checkmatevenodd ... View full answer
Get step-by-step solutions from verified subject matter experts
