Zeeshan Abbas
Followers: 0 Following: 0
Estadística
11 Preguntas
2 Respuestas
CLASIFICACIÓN
140.819
of 295.495
REPUTACIÓN
0
CONTRIBUCIONES
11 Preguntas
2 Respuestas
ACEPTACIÓN DE RESPUESTAS
36.36%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.240
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 153.991
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
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...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
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...
más de 5 años hace | 0 respuestas | 0
0
respuestasPregunta
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 = ...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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...
más de 5 años hace | 0 respuestas | 0
0
respuestasKnuth 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...
más de 5 años hace | 0
| aceptada
Pregunta
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 ...
más de 5 años hace | 2 respuestas | 0
2
respuestasPregunta
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...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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 ...
más de 5 años hace | 1 respuesta | 0
1
respuestaPregunta
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 ...
más de 5 años hace | 0 respuestas | 0
0
respuestasMaking 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...
más de 5 años hace | 0
Pregunta
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...
más de 5 años hace | 2 respuestas | 0