A répondu
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:...

plus de 4 ans il y a | 0

| A accepté

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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 ...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

| A accepté

A répondu
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 ...

plus de 4 ans il y a | 0

A répondu
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 ...

plus de 4 ans il y a | 0

A répondu
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 ...

plus de 4 ans il y a | 0

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

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 6

| A accepté

A répondu
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...

plus de 4 ans il y a | 0

| A accepté

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

| A accepté

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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 ...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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...

plus de 4 ans il y a | 1

A répondu
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...

plus de 4 ans il y a | 0

A répondu
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,...

plus de 4 ans il y a | 0

A répondu
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 ...

presque 5 ans il y a | 0

A répondu
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. ...

presque 5 ans il y a | 0

| A accepté

A répondu
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...

presque 5 ans il y a | 0

A répondu
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...

presque 5 ans il y a | 0