photo

Pamudu Ranasinghe


Last seen: 2 years 前 自 2020 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
8 个回答

Cody

0 个问题
5 个答案

排名
5,969
of 300,137

声誉
8

贡献数
0 个提问
8 个回答

回答接受率
0.00%

收到投票数
2

排名
 of 20,878

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
58,701
of 167,493

贡献数
0 个问题
5 个答案

评分
60

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • 3 Month Streak
  • Revival Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
For loop for SVM variable files
I think you can use "datastore" function in matlab https://in.mathworks.com/help/matlab/ref/datastore.html You dont need to l...

3 years 前 | 1

已回答
Finding Optimal Number Of Clusters for Kmeans
Refer "evalclusters" function https://in.mathworks.com/help/stats/evalclusters.html#d123e303261 eva = evalclusters(X,'kmeans',...

3 years 前 | 0

已回答
How to determine number of clusters automatically for each image to be used in K Means Algorithm
Refer "evalclusters" function https://in.mathworks.com/help/stats/evalclusters.html#d123e303261

3 years 前 | 0

已回答
change color scheme of a scatter plot
use gscatter it is easy https://in.mathworks.com/help/stats/gscatter.html

3 years 前 | 1

已回答
Reshape table by rows, then merge horizontally and new var names
The easiest way is to first convert the table into a matrix form and then reshape it by using the "reshape" function in Matlab.T...

3 years 前 | 0

已回答
Saving multiple figures to a single PDF file
I think the easiest way is to write all your codes in MATLAB Live script. Then you have two ways to do that Option 1 - Save Li...

4 years 前 | 0

已回答
How to transfer this into matlab code
img=imread('img_test.jpg'); RGB_Sum=sum(img,3); %%%---> Method 1 [R,G,B]=imsplit(img); %%%Method 2 %R=img(:,:,1); ...

4 years 前 | 0

| 已接受

已回答
Is it possible to add an 'other' bar to a PARETO plot in MATLAB 7.8 (R2009a)?
function MyParetoDig(X,data) %Pamudu Ranasinghe %2021/06/06 %This Function takes two Parmaters "X" and "data" ...

4 years 前 | 0