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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 6

| aceptada

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 1

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

casi 5 años hace | 0

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

casi 5 años hace | 0

| aceptada

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

casi 5 años hace | 0

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

casi 5 años hace | 0