Community Profile

photo

phdcomputer Eng


Last seen: quasi 3 anni fa Attivo dal 2018

Statistiche

  • First Review
  • Thankful Level 3

Visualizza badge

Content Feed

Visto da

Domanda


what is substitution for fscmrmr in MATLAB R2016a?
I have matlab R2016a program on my computer, I want to use the mRMR feature selection algorithm so I found this function in MAT...

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to use sparse matrix without any problem with MAXSIZE ?
I want to use mRMR algorithm and a part of code is using mutualinfoDis function that it's code is: % feature-selection-mRMR % ...

quasi 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to use ReliefF algorithm for a dataset?
I want to use ReliefF feature selection algorithm for a dataset(colon), I found this code for ReliefF function from github websi...

quasi 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to convert floating-point numbers to integer values for comparison with each other?
I want to classify a dataset by using Decision Tree(DT) to compute the accuracy, for accuracy computation , we compare the resu...

circa 4 anni fa | 0 risposte | 0

0

risposte

Domanda


Should sensivity and specificity values always be reverse in Matlab?
I want to compare several methods by using sensivity and specififcity (Measures for performance evaluation) , I wrote these co...

circa 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to solve the SVMTRAIN 's groups error?
I am using SVM classifier for binary classification(class labels are 0 and 1) by using this code: mysvm=svmtrain(xtrain,ytrain,...

circa 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to use SVM-RFE for feature selection?
I used thse codes from github for SVM-RFE feature selection % original code by PKF % RFE original courtesy of KE YAN, SM %...

circa 4 anni fa | 0 risposte | 0

0

risposte

Domanda


how to use ReliefF algorithm for feteare selection?
I want to use ReliefF Algorithm for feature selection problem,I have a dataset (CNS.mat) I wanted to apply ReliefF Algoritm on t...

circa 4 anni fa | 2 risposte | 0

2

risposte

Domanda


How to define a set of features of a dataset in matlab?
I have a dataset CNS with the size nxm n instances and m features(columns), I wanted to write codes to collect all the feature...

circa 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to draw a bar plot for comparison different methods?
I want to draw a figure like the figure that I attached, every colourful line is the output of a specific methode and the output...

circa 4 anni fa | 0 risposte | 0

0

risposte

Risposto
How to save the several results of a program in an array?
@Stephen Cobeldick I attaced the allaccuracydata,classificationa and ftanimotodist functions. Thanks greatly

oltre 4 anni fa | 0

Domanda


How to save the several results of a program in an array?
clc; clear; close all; tic load colon.mat data=colon; [n,m]=size(data); %% %supervised d=10; l=1; t=1; for i=1:n ...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


how to compute the average of several repeats of a program in matlab?
I wrote this program to classify the dataset(colon) and compute the accuracy of the classifier, I wanted to repeat the classific...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to compute the average of several runs of a function?
I wrote these codes,I loaded the dataset(colon attached) and I randomly selected a part of the data for test and a part for trai...

oltre 4 anni fa | 0 risposte | 0

0

risposte

Domanda


Inner matrix dimensions must agree
I wrote these codes, I splitted the dataset(colon attached) into two parts (data1 and data2) based on the last column(1 or else)...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


How to make two vectors the same size?
I wrote these codes, I splitted the dataset(colon attached) into two parts (data1 and data2) based on the last column(1 or else)...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


how to define Sorenson distance as a function?
I wrote this function for computing Sorenson distance (the formula of Sorenson is attached), Is this code right? the colon is 6...

oltre 4 anni fa | 0 risposte | 0

0

risposte

Domanda


Why my MATLAB program doesn't stop?
I wrote this program in MATLAB to compute the distance between each feature with the rest of features in CNS data (attached) , b...

oltre 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to apply voting for classifiers and obtain the accuracy of classification?
I want to combine the results of five classifiers (SVM, random forest, naive Bayes, decision tree, KNN) by majority voting. I co...

oltre 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to select the values greater than the mean in an array?
I want to apply feature selection on a dataset (lung.mat) After loading the data, I computed the mean of distances between eac...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to apply NMI (mutualinfo) accuracy measure for classifiers?
I want to compute the NMI measure for obtaining the accuracy of the classifiers on a dataset (attached) I used this mutualinfo f...

oltre 4 anni fa | 0 risposte | 0

0

risposte

Domanda


How to sort a matrix's columns by using indexes
I wrote some codes to sort an array (a) descendingly. I want to use the indexes (indA) to sort the data matrix's columns. clo...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


How to compare array's values with each other?
In an array (a) with indexes from 1 to m, I want to compare the values of this array one by one with each other, and if the dist...

oltre 4 anni fa | 2 risposte | 0

2

risposte

Domanda


How to calculate threshold for matrix in Matlab?
I wrote these codes to calculate a threshold for distance values between features of the dataset. after computing hamming distan...

oltre 4 anni fa | 1 risposta | 0

1

risposta

Domanda


How to compare matrices with different dimensions?
I wrote a code for classification by using 5 classifiers and at the end I used voting this code is for initia defining of train ...

quasi 5 anni fa | 0 risposte | 0

0

risposte

Domanda


How to fix MATLAB errors arise from changing the search path?
The Matlab software installed on my computer(windows OS) shows a lot of errors when I tried to change the search path by using a...

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How to fix an error about struct input of an function in Matlab?
I wrote this function svmclassify: [SL: Removed the svmclassify function. This is identical (modulo a few blank lines added) to...

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How to fix a program that does not end?
I wrote a program for clustering that a number of kmeans algorithms are implemented on a dataset, clear all close all clc lo...

quasi 5 anni fa | 1 risposta | 0

1

risposta

Domanda


How to fix the errors Arise from moving .m files and functions in folders?
I wrote some codes in Matlab for classification and I achieved the desired results, all the functions which were used in the pro...

quasi 5 anni fa | 2 risposte | 0

2

risposte

Domanda


How to write CSPA algorithm for clustering ensemble in matlab?
I have lung cancer dataset (attached) , I want to apply clustering ensemble algorithm on the data : CSPA (cluster-based similari...

quasi 5 anni fa | 0 risposte | 0

0

risposte

Carica altro