Hussein Saeed
Followers: 0 Following: 0
統計
MATLAB Answers
2 質問
0 回答
ランク
of 154,105
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
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年以上 前 | 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年以上 前 | 1 件の回答 | 0