photo

Hussein Saeed


Last seen: 2 years 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

Feeds

排序方式:

提问


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

2 years 前 | 2 个回答 | 0

2

个回答

提问


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

2 years 前 | 1 个回答 | 0

1

个回答