Salam Ismaeel
Ryerson University
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.
Statistics
RANK
1 584
of 295 448
REPUTATION
42
CONTRIBUTIONS
0 Questions
6 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
20
RANK
of 20 227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
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)
nästan 5 år ago | 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: %*********************************************...
nästan 5 år ago | 1
How to stop further execution of M-script by using command?
Just use: return anywhere in your code.
ungefär 5 år ago | 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...
ungefär 6 år ago | 0
Shrink a 1-D array (vector) by removing all the columns with a value of zero
Simply by: X(X==0)=[]
ungefär 6 år ago | 0
Find n minimum values in an array?
use: mink() command for R2018a https://www.mathworks.com/help/matlab/ref/mink.html
ungefär 6 år ago | 9