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

4 years ago | 0

| accepted

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

| accepted

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 6

| accepted

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

4 years ago | 0

| accepted

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

4 years ago | 0

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

4 years ago | 0

| accepted

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 1

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

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

4 years ago | 0

| accepted

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

4 years ago | 0

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

4 years ago | 0