photo

Arash Rabbani


University of Leeds

2019 年からアクティブ

Followers: 5   Following: 0

統計

All
MATLAB Answers

0 質問
7 回答

File Exchange

11 ファイル

ランク
8,143
of 300,799

評判
6

コントリビューション
0 質問
7 回答

回答採用率
0.00%

獲得投票数
3

ランク
1,434 of 21,092

評判
1,322

平均評価
5.00

コントリビューション
11 ファイル

ダウンロード
34

ALL TIME ダウンロード
10949

ランク

of 171,134

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

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

バッジを表示

Feeds

表示方法

回答済み
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...

3年以上 前 | 0

回答済み
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');...

約6年 前 | 1

回答済み
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.

約6年 前 | 0

回答済み
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); ...

約6年 前 | 0

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

約6年 前 | 1

回答済み
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=...

約6年 前 | 0

回答済み
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...

6年以上 前 | 1