Community Profile

photo

Hussein Saeed


Last seen: quasi 2 anni fa Attivo dal 2022

Followers: 0   Following: 0

Statistiche

Feeds

Visto da

Domanda


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...

circa 2 anni fa | 2 risposte | 0

2

risposte

Domanda


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...

circa 2 anni fa | 1 risposta | 0

1

risposta