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...

ongeveer 2 jaar 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...

meer dan 2 jaar 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 =...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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-...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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'...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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...

meer dan 2 jaar 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:...

meer dan 2 jaar 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...

meer dan 2 jaar ago | 0

Load more