回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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 =...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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-...

約3年 前 | 0

| 採用済み

回答済み
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...

約3年 前 | 1

| 採用済み

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

約3年 前 | 0

| 採用済み

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

約3年 前 | 0

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

約3年 前 | 0

回答済み
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...

約3年 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

| 採用済み

回答済み
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...

3年以上 前 | 1

| 採用済み

回答済み
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...

3年以上 前 | 0

回答済み
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'...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

回答済み
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:...

3年以上 前 | 0

回答済み
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...

3年以上 前 | 0

さらに読み込む