photo

Hussein Saeed


Last seen: plus de 2 ans il y a Actif depuis 2022

Followers: 0   Following: 0

Statistiques

Feeds

Afficher par

Question


Write a MATLAB script to find the multiplies of the even numbers of any 𝑁 × 𝑀 matrix entered by the user?
clear all clc x=input('enter N x M marix ' ); a=rem(x,2); b=~a; z=~b ; d=b .* x; k=d + z; g=prod(prod(k)); disp(['The...

plus de 2 ans il y a | 2 réponses | 0

2

réponses

Question


Write a MATLAB script to find the sum and the number of the odd negative numbers in a 𝑁 × 𝑀 matrix ?
clear all clc x=input('enter N x M marix '); a=rem(x,2); b=~a; z=~b; d=b .* x; k=d + z; z=prod(prod(k)); disp(['The multipl...

plus de 2 ans il y a | 1 réponse | 0

1

réponse