consider a row vector v. write one or more lines of code to select the elements of v that are exact multiples of 10 (ie., divisible by 10) and store those numbers in a new variable x. in matlab
main.m
v = [15, 20, 25, 30, 35]; % example row vectorx = v(rem(v, 10) == 0); % selecting elements of v that are multiples of 10