Community Profile

photo

Hussein Saeed


Last seen: casi 2 años hace Con actividad desde 2022

Followers: 0   Following: 0

Estadísticas

Feeds

Ver por

Pregunta


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

alrededor de 2 años hace | 2 respuestas | 0

2

respuestas

Pregunta


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

alrededor de 2 años hace | 1 respuesta | 0

1

respuesta