photo

Omar Ali Muhammed


Last seen: 6개월 전 2021년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

10 질문
2 답변

Cody

0 문제
10 답안

순위
35,088
of 300,847

평판
1

참여
10 질문
2 답변

답변 채택
70.0%

획득한 표
1

순위
 of 21,094

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
38,377
of 171,279

참여
0 문제
10 답안

점수
117

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Explorer
  • Thankful Level 3
  • Solver
  • First Answer

배지 보기

Feeds

보기 기준

질문


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

4년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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

4년 초과 전 | 답변 수: 3 | 1

3

답변

질문


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

4년 초과 전 | 답변 수: 2 | 0

2

답변

질문


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

4년 초과 전 | 답변 수: 0 | 0

0

답변

질문


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

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


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

거의 5년 전 | 답변 수: 1 | 0

1

답변

문제를 풀었습니다


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

거의 5년 전

문제를 풀었습니다


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

거의 5년 전

문제를 풀었습니다


Create a vector
Create a vector from 0 to n by intervals of 2.

거의 5년 전

문제를 풀었습니다


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

거의 5년 전

문제를 풀었습니다


Find max
Find the maximum value of a given vector or matrix.

거의 5년 전

문제를 풀었습니다


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

거의 5년 전

문제를 풀었습니다


Inner product of two vectors
Find the inner product of two vectors.

거의 5년 전

문제를 풀었습니다


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

거의 5년 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

거의 5년 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

거의 5년 전

질문


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

거의 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
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(...

거의 5년 전 | 0

| 수락됨

질문


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

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


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

거의 5년 전 | 답변 수: 1 | 0

1

답변

질문


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

거의 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
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

거의 5년 전 | 0