Zeeshan Abbas
Followers: 0 Following: 0
Statistics
RANK
140 814
of 295 467
REPUTATION
0
CONTRIBUTIONS
11 Questions
2 Answers
ANSWER ACCEPTANCE
36.36%
VOTES RECEIVED
0
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153 912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Retain Image details in Matlab
Can we retain or hide these image details after any edit through matlab? I want the same details before and after editing the i...
mer än 5 år ago | 1 answer | 0
1
answerQuestion
PBKDF2 implementation code needed
I am trying to search code for PBKDF. I am able to find in different languages like Python/C etc but could't find in Matlab. Any...
mer än 5 år ago | 1 answer | 0
1
answerQuestion
Get input from user using Popup button
I have a popup button having multiple options. One of them is to get input message from user (screenshot attached). I want to cl...
mer än 5 år ago | 0 answers | 0
0
answersQuestion
Pop-up Menu Issue
I have a pop-up menu having two options: Get message from user Upload message from file The 2nd option is working fine but wh...
mer än 5 år ago | 0 answers | 0
0
answersQuestion
Run one line or the other Option
I have a code in which I need two options. Either user wants to give message at runtime or want to read from a file. message = ...
mer än 5 år ago | 1 answer | 0
1
answerQuestion
Image Quality Measures Calculation Methods
I need to calculate different IQMs like MSE, PSNR, AD, NCC etc for RGB images. My query is: Can I calculate these after convert...
mer än 5 år ago | 0 answers | 0
0
answersKnuth Shuffle key-based
X=[1:1:m]; n = numel(X); key = 2538 %Just for example as it will be decided at run time for i = 1:n % Knuth shuffle in f...
mer än 5 år ago | 0
| accepted
Question
Knuth Shuffle key-based
I have this code of Knuth-Shuffle Algo in forward direction as below (Matlab): X=[1 2 3 4 5 6]; n = numel(X); for i = 2:n ...
mer än 5 år ago | 2 answers | 0
2
answersQuestion
Increment Nonce by any fixed value in loop
I have the nonce value in hex. Let say: nonce = {'00' '11' '22' '33' '44' '55'}; I need to add any fixed value 'x'(hex) to thi...
mer än 5 år ago | 1 answer | 0
1
answerQuestion
Decimal to Binary Conversion
As, d = (1:5); b = de2bi(d,4,'left-msb'); will give us... 0 0 0 1 0 0 1 0 0 0 ...
mer än 5 år ago | 1 answer | 0
1
answerQuestion
Randomness Testing for Permuted Sequences
Let say I have three sequences: S1 = {1,2,3,4,5,6,7,8,9,10} S2 = {3,7,1,9,4,10,5,8,6,2} S3 = {8,3,10,2,6,7,1,5,9,4} i.e. S2 ...
mer än 5 år ago | 0 answers | 0
0
answersMaking loop calculate-able
What if I can make this like: for i = 0:1:n % for j = 0:1:n ind1 = mod(i+1,n+1)+1; ind2 = mod(i+S(ind1...
mer än 5 år ago | 0
Question
Making loop calculate-able
n = 450*450; for i = 0:1:n for j = 0:1:n i = mod (i+1,n+1); j = mod (j + S(i+1), n+1); S([i+1 j...
mer än 5 år ago | 2 answers | 0