photo

Omar Ali Muhammed


Last seen: 4 maanden ago Active since 2021

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

10 Questions
2 Answers

Cody

0 Problems
10 Solutions

RANK
35.082
of 300.364

REPUTATION
1

CONTRIBUTIONS
10 Questions
2 Answers

ANSWER ACCEPTANCE
70.0%

VOTES RECEIVED
1

RANK
 of 20.934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
37.428
of 168.407

CONTRIBUTIONS
0 Problems
10 Solutions

SCORE
117

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Explorer
  • Thankful Level 3
  • Solver
  • First Answer

View badges

Feeds

View by

Question


Is it possible to generate specific random numbers?
The generation of unique random numbers is done simply through randperm. example function idx=RandNumberSequence(Key,N) % us...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Question


Is it possible to vectorize this?
I want to find the most occurring element in the matrix in column wise excluding zeror elements. e.g if A = [1 2 0 3 4 6; 9 3 4...

meer dan 4 jaar ago | 3 answers | 1

3

answers

Question


Is it possible to vectorize this ?
A matrix A(100x1000) a selective column defined in B(1x1000). The required processing is the mean of non zero elements of each c...

meer dan 4 jaar ago | 2 answers | 0

2

answers

Question


How to return multiple values by colfilt?
A matrix A 1000x1000, needd to be subdivided into patches of 5x5 (let us called B). then B is processed by subdividing it int...

meer dan 4 jaar ago | 0 answers | 0

0

answers

Question


Is it possible to find a seed to generate given set of integers?
Given certain ranfom integer numbers defined over [1 N]. Is it possible to find a SEED that is cappable of doing the inverse op...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Question


How can we plot pixel difference histogram accurately?
function PDH(img1,img2) diffImage2 = imfilter(img2, [1, -1]); diffImage1 = imfilter(img1, [1, -1]); minValue1 = min(diffImage...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Question


How can we accurately estimate execution time?
Dear Matlab provides several functions choosing one depends mainly upon execution time. So how we can estimate processing time ...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Answered
How to Vecrorizing conditional vactor mapping problem?
r=A.*3; r(r==0)=1; t1=repelem(B,r); t2=repelem(A,r); t3=t1.*t2; t3=dec2bin(t3)' c=regexprep(t3,'111','001'); c=c-'0'; c(...

meer dan 4 jaar ago | 0

| accepted

Question


How to Vecrorizing conditional vactor mapping problem?
Dear, A is a binary vector its values correspond to the number of times to repeat the corresponding number drawn from the vect...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Question


How to Speedup conditional vector elements replacement?
Dear, a is a vector its values correspond to the number of times to repeat the corresponding number drawn from the vector b. f...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Question


How can I speedup this for loop and ismember?
Due to the large size of the arrays, the following suffers from extremly slow execution. Is it possible to speedup this code. V...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Answered
ismember function too slow
A=[1 2 3 4 5 6 7 8 9 10]; B=[3 4 9]; tt=ismember(B,A); if sum(tt)==3 Do Something; else Do Something; end

meer dan 4 jaar ago | 0