Question: No even numbers ( 1 D Arrays ) Write a function called removeEvens to remove all the even numbers from input row array inRowArray, which

No even numbers (1D Arrays)
Write a function called removeEvens to remove all the even numbers from input row array inRowArray, which contains integer numbers.
The function removeEvens should use the mod internal function and operate on a row array of any length.
Hint: Logical indexing and the double square brackets [] should be used. The mod function should be used to identify even numbers,
along with combination with logical indexing, and the empty array operator [] to remove the even numbers.
Restrictions: Loops should not be used.
Ex:
inputRowArray =[1,2,3,4,5]
removeEvens( inputRowArray )
produces
1,3,5
Function 0
1 function [ output_args ]= removeEvens ( input_args )
From integer row input array, remove even entries
end
Code to call your function
 No even numbers (1D Arrays) Write a function called removeEvens to

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!