Answered
How to write code for projected gradient descent?
The min function in MATLAB optionally returns the index of the minimum value. You can calculate the function for all input value...

3 years ago | 0

Answered
How it is possible to have groups of data with the same distribution using KS test 2?
As per my understanding, the results are not same for all set of samples for the datasets. As kstest2 uses samples of datasets,...

3 years ago | 0

Answered
Implementation separated autoencoder in an OFDM system by Deep Network Designer
You should be able to write custom layers, and import them into Deep Network Designer. However, currently it is not possible to ...

3 years ago | 0

Answered
Using crossval on a trained classifier model in an inbalanced dataset
Currently, there is no argument available to include oversampling in various classification functions. As a workaround, you can...

3 years ago | 0

| accepted

Answered
Fitlm and regression equations
As per my understanding, you are facing issue due to NaNs in the data. You can consider replacing NaNs with a more appropriate ...

3 years ago | 0

Answered
Confusion matrix of SVM classifier with k-fold cross-validation
You can use confusionmat for getting the confusion matrix. This way, the results are correct. Check the following sample code, ...

3 years ago | 1

Answered
Error using classreg.learning.internal.table2PredictMatrix>makeXMatrix (line 97) Table variable job is not a valid predictor.
A KFold partitioned model should only be used to predict on the training dataset itself(Using kfoldpredict, for example). Once y...

3 years ago | 0

| accepted

Answered
Multivariate linear regression Determine Confidence Intervals for parameters, mean response, and future response
You can use Alpha argument in predict function to get confidence intervals. You can also use the coefCI function to get confiden...

3 years ago | 0

Answered
Appropriate data structure for using predictand update state for LSTM
As per my understanding, the sizes of your Xtrain and Ytrain datasets are not matching. The method to fix this issue will depen...

3 years ago | 1

Answered
Design matrix input for predict() for fitglme output
I have brought your request to the notice of the concerned people. It might be implemented in any of the future releases.

3 years ago | 0

| accepted

Answered
LSTM padding and masking
Currently, masking is not supported in MATLAB. I have brought the request to the notice of concerned people. As a workaround, y...

3 years ago | 2

Answered
How to add boundary conditions using fitnlm function?
This is an known request, and might be implemented in any future release. As a workaround, you can use the predicted parameters...

3 years ago | 0

Answered
Matérn kernel functions for support vector regression
The KernelFunction argument accepts custom function. You can create a function for matern kernel, and pass it to KernelFunction ...

3 years ago | 1

| accepted

Answered
Is there any way of using machine learning for successive image comparison to a template?
As per my understanding, you have some ECG data that can be classified as normal or abnormal, and you want to train a machine le...

3 years ago | 0

Answered
Adding parameter and value pair in fitcdiscr for QDA classifier
Passing KFold to any classification model creates a ClassificationPartitionedModel, which is a set of multiple models. As such, ...

3 years ago | 1

| accepted

Answered
how to decrease the error autocorrelation of a neural network
As per my understanding, you want to reduce the autocorrelation of a signal. Decorrelation algorithms depend on the nature of t...

3 years ago | 0

| accepted

Answered
How to performe k-medoids with pre-calculated distance matrix
Currently, it's not possible to pass distance matrix to kmedoids. I have brought this issue to the notice of concerned people.

3 years ago | 0

Answered
SVM accuracy is different when done inside for loop than when done individually
You need to set random number seed, without which some parameters in fitcecoc will change on each execution. See the following c...

3 years ago | 0

| accepted

Answered
paretotails function and frequency vector
I have brought this issue to the notice of the concerned people. If the data is time based, then you can work around the proble...

3 years ago | 0

| accepted

Answered
Color detecting with neural network MLP
You do not have to use a Neural network to read colors from the data. To check if some color is present in the image, you shoul...

3 years ago | 0

Answered
Model Advisor could not retrieve information from the model correctly
This is a known issue and might be fixed in any upcoming issue. You can track the bug for fix/workaround in this bug report.

3 years ago | 0

Answered
How do I make colors for scatter3 same as in Stata graphs
You can pass a 3D matrix of RGB values to scatter3 function as in following example, [X,Y,Z] = sphere(16); x = [0.5*X(:); 0....

3 years ago | 0

Answered
NVIDIA Quadro RTX3000 support
The wikipedia page is not owned or maintained by MathWorks. The Quadro RTX 3000 is based off the turing architecture, and as suc...

3 years ago | 1

| accepted

Answered
Symbolic Math Toolbox add on lost...
You can reach out to MathWorks customer support using the contact us page, for any queries regarding license or installation.

3 years ago | 0

Answered
fft and complex number operation for dlarray?
As of now, fft does not support dlarray. This is an known issue, and it might get fixed in any upcoming release.

3 years ago | 0

| accepted

Answered
CVpartition inside CVpartition to decrease dataset siz
Instead of partitioning dataset again, you can increase the holdout size. Alternately, consider using simpler models or smaller ...

3 years ago | 0

| accepted

Answered
Interpretation of plot: classification loss about number of features and number of observations
As per my understanding, when you plot losses for each feature individually, you get zero loss for some of them. By default, th...

3 years ago | 1

Answered
Can I have checkpoints in Bayesian optimization for tuning hyperparameters of a neural network?
Currently, there is no checkpointing argument. However, you can use the 'OutputFcn' argument along with the 'SaveFileName' argum...

3 years ago | 1

| accepted

Answered
Poor performance of Yolov2 network
120 images is very low for neural networks. You can consider fine tuning/transfer learning on pretrained Yolov2. Alternately, co...

3 years ago | 0

Answered
Adding Cross Validation to Classification code
Currently, KFold validation is not supported for neural networks. I have brought the issue to the notice of the concerned people...

3 years ago | 0

Load more