photo

Arash Rabbani


University of Leeds

Attivo dal 2019

Followers: 5   Following: 0

Messaggio

Statistica

All
MATLAB Answers

0 Domande
7 Risposte

File Exchange

11 File

RANK
8.106
of 300.369

REPUTAZIONE
6

CONTRIBUTI
0 Domande
7 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
3

RANK
1.434 of 20.936

REPUTAZIONE
1.316

VALUTAZIONE MEDIA
5.00

CONTRIBUTI
11 File

DOWNLOAD
61

ALL TIME DOWNLOAD
10888

RANK

of 168.436

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 5-Star Galaxy Level 5
  • Explorer
  • Personal Best Downloads Level 3
  • First Review
  • GitHub Submissions Level 1
  • First Submission
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
How to convert the MATLAB code into the Python?
You may want to check these tutorials on how to convert a code from MATLAB to python. https://www.youtube.com/watch?v=OV9A72IC...

oltre 3 anni fa | 0

Risposto
Using a for loop to put a number of 2D arrays in a directory into a single 3D array
If your images are PNG and located in a folder, just run this code on that folder. 'A' is the resulted matrice: D=dir('*.png');...

quasi 6 anni fa | 1

Risposto
Graph visualization adding white to my nodes. How to solve it?
This is a visual artifact I assume. Try add Edge Color to your nodes. It could help.

quasi 6 anni fa | 0

Risposto
Index a 2D matrix from a 2D matrix
Well you can simply do this without a loop: A=rand(600,1000); B=A(1:51,1:51); But if you need it to use loops B=zeros(51); ...

quasi 6 anni fa | 0

Risposto
Count centroids in an image
Why not simply label the binary image? and 'Num' would be the number of characters. [Label, Num]=bwlabel(Image)

quasi 6 anni fa | 1

Risposto
find mutual information between series of images
Hi, why dont you save the MI values inside an array like this: and then find the location of the maximum value. Image_Address=...

quasi 6 anni fa | 0

Risposto
How to remove dependent rows in a matrix?
This is a shorter version of Jos solution if you needed: R1=1; for I=1:size(A,1) R2=rank(A(1:I,:)); if R2~=R1; disp...

circa 6 anni fa | 1