Salam Ismaeel - MATLAB Central
photo

Salam Ismaeel


Ryerson University

Last seen: 3年弱 前 2018 年からアクティブ

Followers: 0   Following: 0

Salam Ismaeel has obtained his PhD degree from the School of Computer Science at Ryerson University, Toronto, Canada in 2020. Currently his is working as a Senior Data Scientist at Ontario Government, Canada. Ismaeel served in academic positions for more than 15 years at the University of Technology, University of Baghdad, Future University, Syrian Private University and Ryerson University. He was the dean of the Faculty of Computer and Informatics Engineering in SPY. He received the B.S. and M.S. in Computer and System Engineering form University of Technology, Iraq in 1995 and 1997 respectively. He received his 1st Ph.D. degree in Computer Engineering from Al-Nahrain University in 2003. His research interests span various topics in the areas of Cloud Computing, Energy-Aware Computing, Big Data modelling and analysis. He is an IEEE member; reviewer in Applied Soft Computing Journal; and member in IEEE International Humanitarian Technology committee.

統計

All
CodyMATLAB AnswersFrom 08/18 to 03/25Use left and right arrows to move selectionFrom 08/18Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 質問
6 回答

Cody

0 問題
45 解答

ランク
1,616
of 297,851

評判
42

コントリビューション
0 質問
6 回答

回答採用率
0.00%

獲得投票数
20

ランク
 of 20,493

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
10,007
of 159,663

コントリビューション
0 問題
45 解答

スコア
560

バッジ数
3

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Explorer
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver
  • 3 Month Streak
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
How do I count the number of zeros in a matrix?
% for a vector sum(A == 0) % for a 2D matrix sum(sum(A == 0)

約5年 前 | 0

回答済み
How can i correctly write an if "yes or no" statement?
Just for genral use, not necessary for this case only. I create this function: %*********************************************...

5年以上 前 | 1

回答済み
How to stop further execution of M-script by using command?
Just use: return anywhere in your code.

5年以上 前 | 10

回答済み
mink and maxk functions
% function [B BIndex RestVector]= maxk2(A, k) % Find k largest elements in a Vector A % B : Vector with all max elements...

6年以上 前 | 0

回答済み
Shrink a 1-D array (vector) by removing all the columns with a value of zero
Simply by: X(X==0)=[]

6年以上 前 | 0

回答済み
Find n minimum values in an array?
use: mink() command for R2018a https://www.mathworks.com/help/matlab/ref/mink.html

6年以上 前 | 9