Zeeshan Abbas
自 2019 起处于活动状态
Followers: 0 Following: 0
Feeds
提问
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...
5 years 前 | 1 个回答 | 0
1
个回答提问
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...
5 years 前 | 1 个回答 | 0
1
个回答提问
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...
5 years 前 | 0 个回答 | 0
0
个回答提问
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...
5 years 前 | 0 个回答 | 0
0
个回答提问
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 = ...
5 years 前 | 1 个回答 | 0
1
个回答提问
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...
5 years 前 | 0 个回答 | 0
0
个回答已回答
Knuth 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...
Knuth 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...
5 years 前 | 0
| 已接受
提问
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 ...
5 years 前 | 2 个回答 | 0
2
个回答提问
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...
5 years 前 | 1 个回答 | 0
1
个回答提问
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 ...
5 years 前 | 1 个回答 | 0
1
个回答提问
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 ...
5 years 前 | 0 个回答 | 0
0
个回答已回答
Making 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...
Making 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...
5 years 前 | 0
提问
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...
5 years 前 | 2 个回答 | 0