Pamudu Ranasinghe
Followers: 0 Following: 0
Statistik
RANG
5.934
of 295.486
REPUTATION
8
BEITRÄGE
0 Fragen
8 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
2
RANG
of 20.236
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
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...
mehr als 2 Jahre vor | 1
Finding Optimal Number Of Clusters for Kmeans
Refer "evalclusters" function https://in.mathworks.com/help/stats/evalclusters.html#d123e303261 eva = evalclusters(X,'kmeans',...
mehr als 2 Jahre vor | 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
mehr als 2 Jahre vor | 0
change color scheme of a scatter plot
use gscatter it is easy https://in.mathworks.com/help/stats/gscatter.html
mehr als 2 Jahre vor | 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...
mehr als 2 Jahre vor | 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...
mehr als 3 Jahre vor | 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); ...
mehr als 3 Jahre vor | 0
| akzeptiert
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" ...
mehr als 3 Jahre vor | 0
Gelöst
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
fast 4 Jahre vor
Gelöst
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
fast 4 Jahre vor
Gelöst
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
fast 4 Jahre vor
Gelöst
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
fast 4 Jahre vor