photo

Salam Ismaeel


Ryerson University

Last seen: oltre 3 anni fa Attivo dal 2018

Followers: 0   Following: 0

Messaggio

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.

Statistica

All
MATLAB Answers

0 Domande
6 Risposte

Cody

0 Problemi
45 Soluzioni

RANK
1.646
of 300.381

REPUTAZIONE
42

CONTRIBUTI
0 Domande
6 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
20

RANK
 of 20.941

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
10.780
of 168.477

CONTRIBUTI
0 Problemi
45 Soluzioni

PUNTEGGIO
560

NUMERO DI BADGE
3

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

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

Visualizza badge

Feeds

Visto da

Risposto
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)

quasi 6 anni fa | 0

Risposto
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: %*********************************************...

quasi 6 anni fa | 1

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

quasi 6 anni fa | 10

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

circa 7 anni fa | 0

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

circa 7 anni fa | 0

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

circa 7 anni fa | 9