Answered
This folder name is invalid. Folder names can contain alphanumeric characters and '-', '_', '.', or '/' only. The destination folder cannot be named "private".
Hi, There are some naming conventions that needs to be followed which name files and folder. Please refer the following docume...

2 years ago | 0

Answered
Are there two conditions at once when using the if condition?
Hi, You can use logical operator & to achieve this. Q_1 = 30; Q_D = 11.3; Q_E = 8.3; Q_R = 7.5; Q_F = 4.5; connectio...

2 years ago | 0

Answered
how to get Pearson coefficient in the single vector not in the matrix
Hi, Pearson coefficient measures the strength and direction of a linear relationship between two variables. For example : x =...

2 years ago | 0

Answered
How can I trust my result which is changing according to train,test and validation set choice in NeuralNetwork?
Hi, This generally happens when you do not have a pre-defined train, validation and test set for training and testing the model...

2 years ago | 0

Answered
How to feed a feature matrix for each class in multiclass classification?
Hi, You can feed the input matrix like you do it binary classifier or any classifier. Please refer the following code for bett...

2 years ago | 0

Answered
Cant index into a constant Property of a class
Hi, You can index into string array just like normal indexing. Please look at the code below for reference: classdef NamedCons...

2 years ago | 0

Answered
Save a trained neural network for Raspberry
Hi, Please look at the following MATLAB answers: https://www.mathworks.com/matlabcentral/answers/1621010-how-to-deploy-custom-...

2 years ago | 0

| accepted

Answered
Class method is 'call by value' function, isn't it?
Hi, One of the input arguments must be an object or array of objects of the defining class. These methods can compute values ba...

2 years ago | 1

| accepted

Answered
logical indexing for dlarrays
Hi, This is the intended behaviour once you index "dlarray". Possible workaround is to re-apply the format. Here is the way to...

2 years ago | 0

Answered
How can I inbuild choice several time?
Hi, For better clearity you can rename variables at each level of nesting as each of the conditional variable is names as "choi...

2 years ago | 0

Answered
webread retrieves source but I need the data in the webpage
Hi, You can do it using "webread" function itself. Please refer the following MATLAB answers https://www.mathworks.com/matlab...

2 years ago | 0

Answered
How to display a menu if the entered value is true and at end of each option
Hi, You can do it using 'while' loop and 'break' statement. Once you have achieved the desired result you can use 'break' state...

2 years ago | 0

Answered
how can I cause jsondecode to add [ ]
Hi, You can create another json which you want to put in []. You can refer the following implementation jsonformat1.filename...

2 years ago | 0

Answered
Download data from a webpage after putting in login credentials.
Hi, Kindly refer to the following MATLAB answers https://www.mathworks.com/matlabcentral/answers/451874-how-to-download-data-f...

2 years ago | 0

Answered
How to read the date from url link
Hi, You can do it using webread or urlread.Then you'll have to parse it yourself, manually, to extract the exact part of the pa...

2 years ago | 0

| accepted

Answered
AI model increase accuracy
Hi, You can try the following things : You can try deep learning methods and try using different regularization technique Ra...

2 years ago | 0

Answered
Questions about how "confusion "and" confusionchart "return indexes.
Hi, 'confusion' fucntion returns cell array, index but 'confusionchart' function returns ConfusionMatrixChart object. It does n...

2 years ago | 0

Answered
ANN for multi-class classification
Hi, According to your code, 'perfcurve' is taking true postive rate(tpr) and false postive rate(fpr) as input but 'perfcurve' t...

2 years ago | 0

Answered
Classification learner is slow to train other than Decision Tree
Hi, There are two important things to take care here : Please check whether k-fold cross validation is happening or not in Cla...

2 years ago | 0

Answered
NaNs and regress lead to error?
Hi Chiefjia, Yes, if the rows contains NaNs, then the corresponding rows of independent variable will also be removed. This mea...

2 years ago | 0

Answered
I wish to plot a data with 5 axes variables together.
Hi Anurag, You can plot 5 separate heatmaps but plotting all the 5 axes with corresponding output is not possible. To create h...

2 years ago | 0

| accepted

Answered
Can i find the KernelScale that was found automatically in fitcsvm?
Hi Eva de Bock, Yes you can find the kernel scale by using the executing the following code in MATALB terminal >> mdl.KernelPa...

2 years ago | 1

| accepted

Answered
Readcell and opening excel files is not working
Hi Parth, You can use readtable function to read the excel files into MATLAB. This function reads the data in a table. T = rea...

2 years ago | 0

Answered
How to import many csv files in matlab and export one excel file?
Hi, You can use readtable function to read the csv files and combine them into a single excel file. t1 = readtable('data1.csv'...

2 years ago | 0

Answered
how can we use for loop to get index of matrix and letters ?
Hi Manav, You can do it via the following code: s = 'orange'; v = [1 2 5]; for i=1:numel(v) fprintf("Char at %d is %s\n...

2 years ago | 0

Answered
Random Forest - How to create every tree with only a certain amount of random features?
Hi Laurynas Angelbeck, In a random forest, variables are selected randomly for every split. However selecting a subset of predi...

2 years ago | 0

Answered
Is SVM sensitive to unbalanced observations? The observations in one class is 3-4 times of the observation in an other class in binary classification
Hi Zeynab Mousavikhamene, Yes, SVM is sensitive to imbalanced dataset and this gives suboptimal models. You can use 'Cost' Nam...

2 years ago | 0

Answered
How to resolve if Validation and Testing accuracy are widely different?
Hi Sahil Bajaj, This generally happens when your model is learning the data instead of learning the pattern. This scenario is c...

2 years ago | 0

Answered
How to use the dataset in Visual question Answering
Hi Suheer Al-Hadhrami, You can make use of 'Multiple-Input Networks". Please refer to the documentation for the same : https:...

2 years ago | 0

Answered
how to apply multiple feature set to a classify images
Hi, You can use 'Classification Learner app'. Below is the link of the documentation for the same- https://www.mathworks.com/h...

2 years ago | 0

Load more