Réponse apportée
Why is fitcdiscr function much slower than classify?
It depends on what parameters you pass to either... fitcdiscr supports cross-validation and hyperparameter optimization, and eit...

plus de 6 ans il y a | 0

Réponse apportée
Can the rica function return an estimate of the unmixing matrix?
Yes, it does, if you have RICA reduce your original features to just 2, see this example in our doc: https://www.mathworks.com/h...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
SVM Model not working properly on test data
You are applying the predict function correctly, so there must be something wrong with your testData, probably the type in one c...

plus de 6 ans il y a | 0

Réponse apportée
Export trained models in coreML
Exporting MATLAB models into a format Python can read, or into the CoreML format is currently not supported. You could exploring...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
how to combine the output of two CNN networks into another CNN
DAG layers are not yet supported, but will be soon. See also https://www.mathworks.com/matlabcentral/answers/369328-how-to-use-m...

presque 7 ans il y a | 0

Réponse apportée
How can I use fitcdiscr using my own covariance matrix?
The training of fitcdiscr is to estimate the covariance matrix. If you have the covariance matrix, makecdiscr can be used to gen...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
how to classify with svm
The table needs to have the various observations as rows. Alternatively to the ClassificationLearnerApp, you can train an SVM us...

presque 7 ans il y a | 1

Réponse apportée
How can I incorporate spatially correlated data into linear mixed effect model which is fitlmematrix method I am trying to use?
The covariance matrix of the response in a linear mixed effects model has 2 components – a random effects component ( sigma^2)*s...

presque 7 ans il y a | 0

Réponse apportée
How to detect trigger point of signal rising
You could apply the CUSUM algorithm. You can find an example with code at https://dsp.stackexchange.com/questions/30039/detect-t...

presque 7 ans il y a | 0

Réponse apportée
Covariance terms using fitdist()
pd.ParameterCovariance(2,2) is the covariance of the variance of the estimated normal distribution. See https://www.mathworks...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
How to reuse activations of two concatenated layers into a new one
1) If you have R2017b, there is support for DAG networks. You'd extract the layers from the networks using the “Layers” property...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
moving shadow removal in video
This forum is meant to help you overcome a problem with a specific MATLAB function, or general guidance for a narrowly defined p...

presque 7 ans il y a | 0

Réponse apportée
How can I enable english subtitles in Machine Learning course?
Unfortunately, these courses don't have subtitles.

presque 7 ans il y a | 0

Réponse apportée
please in details can anyone explain this code of K means Segmentation?
You need to provide some more context, what are you trying to accomplish? Right now, this feels like a coding puzzle. By my inte...

presque 7 ans il y a | 0

Réponse apportée
How can I get the the ward distance change to find an optimal number of clusters.
The evalclusters function determines the optimal number of clusters for you. ‘linkage’ will use agglomerative clustering as the ...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
MATLAB Code for K-Harmonic Means clustering
This algorithm is not supported in the Statistics and Machine Learning toolbox, only standard k-means with various distance func...

presque 7 ans il y a | 0

Réponse apportée
Outputs of classifiers and how to measure confidence?
You could try using the predint or confint functions, see also https://www.mathworks.com/matlabcentral/answers/266432-how-to-plo...

presque 7 ans il y a | 0

Réponse apportée
How to use fitcsvm in matlab classifications Brain tumor Mr image?(Benign,Malignant)
Can you illustrate what your data looks like, and where you get what type of error? And which release of MATLAB are you using? L...

presque 7 ans il y a | 0

Réponse apportée
How to take first derivative and plot
You can use zscore to normalize, then diff to compute the differences, and then plot original and differences on the same plot (...

presque 7 ans il y a | 0

Réponse apportée
How can i do k-fold cross validation with Matlab built-in k-mean?
Cross-validation is indeed typically used in the context of classification, since it's a method to measure accuracy on "unseen" ...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
How do I implement classification tree in Simulink?
Your question is pretty general, but here you can find guidance how to simulate neural networks in Simulink, or insert a neural ...

presque 7 ans il y a | 0

Réponse apportée
how can I identify the features of my data x that mostly contribute to the classification of linear discriminant analysis?
The coefficient magnitude is a measure of predictor importance. After the training with normalized data (zero mean and unit vari...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
HOw to fix an Error in deep network configuration with images data sets
Currently, (deep) networks with multiple inputs are not supported in our framework, but we are working on that enhancement. A...

presque 7 ans il y a | 0

Réponse apportée
glmfit optimization algorithm?
glmfit uses Fisher's scoring method, performing Maximum likelihood estimates with an iteratively reweighted least-squares algori...

presque 7 ans il y a | 0

Réponse apportée
how to use multiple input layers in DAG net as shown in the figure
Modeling DAG graphs with multiple inputs and/or outputs is currently not supported in our deep learning framework, but we are wo...

presque 7 ans il y a | 0

Réponse apportée
How to find average score of different combination
Your combinations don't define a proper partition of the data sets. The grpstats command does allow you to group data from a ...

presque 7 ans il y a | 0

Réponse apportée
How to fit a model a=bx+cy form, for series of data?
If you interpret a=bx+cy as a linear equation with the scalars x,y as unknown (even though you said they are known), it's an ove...

presque 7 ans il y a | 0