回答済み
what is the main feature of numerical optimization techniques and does genetic algorithms consider a numerical optimization
You can refer to the following link for more information on numerical optimization which is mainly part of Optimization Toolbox:...

6年以上 前 | 0

| 採用済み

回答済み
Connecting various layers in deep learnig
You can use layerGraphfor connecting layers of your network. You can specify your network as a digraph: lgraph = layerGraph(da...

6年以上 前 | 0

回答済み
Fitting ("Estimating") Multivariate Normal Distribution to Data
fitgmdist provides you different options which you can vary depending upon your data to get better results. You can adjust the ...

6年以上 前 | 0

回答済み
MATLAB code for language identification using audio signal
For any identifying language you will need huge dataset of the words in that language if you want to use any Machine learning te...

6年以上 前 | 0

回答済み
Monte carlo working with function
You can refer to the following MATLAB examples which shows the use of Monte Carlo in different application : https://in.mathwor...

6年以上 前 | 0

回答済み
MILP using Genetic algorithm - penalty value increases beyond the global minimum
You can refer to the following example in the link to know more about solving MILP using GA: https://in.mathworks.com/help/gads...

6年以上 前 | 0

| 採用済み

回答済み
Classifying Erroneous Data Sections of Time Series Using Machine Learning
You can use isoutlier to finding out outliers in your data. There are different methods that you can use for checking erroneous ...

6年以上 前 | 0

回答済み
Using two differents distance in the same clustering algorithm
I understand that you want to use mahalanobis distance for calculating distance between clusters and then use a custom distance ...

6年以上 前 | 0

回答済み
How to create the contour (closed surface) utilizing matlab functions or loopings using the given Matrix under certain conditions
I understand that you want to fill the matrix such that the boundaries are filled circularly. And for starting 3, it should be ...

6年以上 前 | 0

回答済み
Covariance matrix and principal components
When you are using the following code for pca: [coeff2,score2,latent2,tsquared2,explained2,mu2] = pca(realization_mat','Centere...

6年以上 前 | 0

回答済み
Unexpected image size: All images must have the same size.
You can use augmentedImageDataStore to resize all images to same size. Use the following code for your problem: dataChest = f...

6年以上 前 | 7

| 採用済み

回答済み
how does the gaussian mixture model regularization value work?
By adding very small positive number (say c) on the diagonal of covariance matrix, you are basically shifting the eigen values b...

6年以上 前 | 0

| 採用済み

回答済み
How to optimise path for robotic manipulator with obstacle avoidance??
For a 2D environment, you can use PRM . For building the environment you need to give the environment and number of points as i...

6年以上 前 | 0

回答済み
Looping through different fields in struct
As mentioned in the comments above, it is not a good idea to define dynamic variable names. But if you want to avoid manually w...

6年以上 前 | 0

| 採用済み

回答済み
inPolygon entry time and exit time
I understand that the main issue is repeated querying of large number of points to inpoygon function. One approach can be fil...

6年以上 前 | 0

回答済み
Mixed Integer Linear Programming with Matrices
Suppose you have matrix with constraints and inputs specified as rows (or columns). You can specify the inputs and constraints ...

6年以上 前 | 0

回答済み
Comparing and exporting data from 3 tables
I understand that you want to compare columns of different tables and then export them as a new table and highlight the common e...

6年以上 前 | 0

回答済み
MILP Optimization dynamic input
I understand that you want to enter user input through a table. You can do that by making the table fields editable. So, de...

6年以上 前 | 1

回答済み
i do a face recognition and i got some problem. How to know someone does not have in our database
One way to do it is, by creating an extra class. Using AlexNet, whenever you give an image, you will get confidence value for ea...

6年以上 前 | 0

回答済み
how can I fit a composite function
There are many ways of fitting parameters to the data. Firstly, you can form the equations in the following manner: z= @(x0,w,...

6年以上 前 | 0

回答済み
n+1 in formula
Hi, I understand that by “put” you mean you want to implement it without using loops. The following code implements the above ...

6年以上 前 | 0

回答済み
How can I do graph matching?
Hi, I understand that you are representing every gene as a graph and want to compare two genes after the image gets updated. ...

6年以上 前 | 0

| 採用済み

回答済み
Histogram with time data
Hi, You can use the xticks and xticklabels to plot the frequency histogram. The following code below implements the above requ...

6年以上 前 | 0

回答済み
Importing multiple csv files as separate structures
Hi, I understand that you want to traverse folder which has subfolders, having csv files. You want to read csv files as a struc...

6年以上 前 | 0