Risposto
KLT tracker: vision.PointTracker is whether affine model or translation model
Hi Nisha, The KLT Algorithm uses the 'good features to track' which assumes the affine model. You can go thourgh the following...

oltre 3 anni fa | 0

| accettato

Risposto
Is there an equivalent serialbreak() function with the new serialport class in MATLAB 2020b?
Hi Matthew, As of MATLAB R2019b there is no builtin function to send a serial break to the 'serialport' object. Instead this w...

oltre 3 anni fa | 0

Risposto
K-means Clustering for Image Segmentation to find sum of cluster's pixels
Hi Sebastian, Assuming that the goal is finding the pixels corresponding to a particular cluster, one can use the "find" functi...

oltre 3 anni fa | 0

| accettato

Risposto
Volshow contrast or scaling the colormap
Hi, Assuming that the colormap generation is being a bit difficult, one can use the "ColorMap" property of the volshow() functi...

oltre 3 anni fa | 0

Risposto
Can I change the way Matlab2020b determines default y limits of plots?
Hi, The limits for the axis objects are set automatically in 2020b by default and hence it can take values which are not rounde...

oltre 3 anni fa | 0

Risposto
An error while using polyxpoly for finding (xi,yi) of an intersecting line and circle
Hi, The x co-ordinates as well as the y co-ordinates of the line and the circle should not be combined as this generates a com...

quasi 4 anni fa | 1

| accettato

Risposto
How to generate 10 iid Gaussian random samples having mean 0 and variance 10. From the generated samples check the mean and the variance. Repeat the experiment for 100 samples, 1000 samples and so on.
Hi, The following lines of code might be helpful: mu = 0; variance = 10; num_sample = 1000; sample_arr = mu+sqrt(variance...

quasi 4 anni fa | 0

| accettato

Risposto
Why i have error when open Matlab
MATLAB might be unable to resolve the default path. The following link might be helpful: https://www.mathworks.com/matlabcentra...

quasi 4 anni fa | 0

Risposto
Detecting watershed oversegmentation errors
The over-segmentation of the Watershed algorithm may be resolved by using the 'imhmin' function prior to using the 'watershed' f...

quasi 4 anni fa | 0

Risposto
How to extract Best fitness graph for Genetic Algorithm in Matlab after each optimization run?
Hi, The following link might be helpful: https://www.mathworks.com/help/gads/creating-a-custom-plot-function.html Hope thi...

quasi 4 anni fa | 0

Risposto
How can I use sigmoid layer at output for multilabel classification?
The following link might be helpful: https://www.mathworks.com/matlabcentral/answers/409466-how-can-i-use-a-sigmoid-output-lay...

quasi 4 anni fa | 0

Risposto
Extra margin or boarder space around apps in 20a/20b.
CEF (Chromium Embedded Framework) windows scale up pixel positions for any DPI higher than 96 on a Windows system. However, it a...

quasi 4 anni fa | 0

| accettato

Risposto
Finding x and y values of a point on a Simulink plot
The fllowing link might be helpful for solving the problem: https://www.mathworks.com/matlabcentral/answers/92034-is-it-possibl...

quasi 4 anni fa | 0

Risposto
Find a square in an image and give back it's location and color in the image
The following link might be helpful for solving your problem: https://www.mathworks.com/matlabcentral/answers/24943-detect-squa...

quasi 4 anni fa | 0

Risposto
Does 'fitglm' use least squares or maximum likelihood to form the fit?
The 'fitglm' function makes use of the “Iteratively Reweighted Least Squares” method to find the regression coefficients in the ...

quasi 4 anni fa | 0

| accettato

Risposto
Hanning window Frequency Domain Graph
The graph for frequency response is correct. In case you want to generate a plot for magnitude response in decibels, make the fo...

quasi 4 anni fa | 1

| accettato

Risposto
How can I remove outliers by using mahalanobis distance?
One can use p-values obtained from a chi-squared distribution to remove outliers using Mahalanobis Distance. The p-values f...

quasi 4 anni fa | 1

| accettato

Risposto
How to find mosaic plot of this dataset
There is no direct implementation for mosaic plot in MATLAB. A workaround for this issue would be to access the zip file “mosa...

quasi 4 anni fa | 0

Risposto
Matlab function which convolves a one dimensional signal with a one dimensional filter
The following code snippet defines a function for 1D convolution: function z = conv1D(x,y) l = length(x); z = zeros(2...

quasi 4 anni fa | 0

Risposto
What is the difference between scalogram and scatteing coeffcients??
Consider a 1-D signal F. The zeroth order scattering coefficient can be obtained by convolving F with the scaling function  to o...

quasi 4 anni fa | 0

| accettato

Risposto
3D Delaunay Triangulation Error/Weirdness
Since the number of faces is set to 100 for the given sphere function, the triangulation has become highly dense. Here are so...

quasi 4 anni fa | 0

Risposto
How can I sample a signal after it goes through a communication channel?
Assuming that the mathematical form of r(t) is known, the following code snippet will generate a sequence of sampled points from...

quasi 4 anni fa | 0

| accettato

Risposto
How can I overlay in color a matrix over a grey scale image with Matlab2020
The function imagesc can be used to produce the desired results. Assuming that I and A are 2-dimensional arrays, the followin...

quasi 4 anni fa | 0

Risposto
Is it possible to use Euclidean Transform with estimateGeometricTransform function
The estimateGeometricTransform function cannot estimate non-scaling or rigid transformation matrices. However, there are o...

quasi 4 anni fa | 0

Risposto
Need help in making a Markov Probability Matrix
Assuming random values for the Markov probability matrix, the following snippet might be helpful for defining a Markov Probabili...

quasi 4 anni fa | 0

| accettato