Zeeshan Abbas
Followers: 0 Following: 0
Statistik
RANG
140.819
of 295.495
REPUTATION
0
BEITRÄGE
11 Fragen
2 Antworten
ANTWORTZUSTIMMUNG
36.36%
ERHALTENE STIMMEN
0
RANG
of 20.240
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.991
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
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...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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 = ...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenKnuth 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...
mehr als 5 Jahre vor | 0
| akzeptiert
Frage
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 ...
mehr als 5 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ...
mehr als 5 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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 ...
mehr als 5 Jahre vor | 0 Antworten | 0
0
AntwortenMaking 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...
mehr als 5 Jahre vor | 0
Frage
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...
mehr als 5 Jahre vor | 2 Antworten | 0