Réponse apportée
What noise is used in the measurement example throughput?
Hi, I am assuming that you are referring to the following example: https://in.mathworks.com/help/wlan/examples/802-11-mac-and...

plus de 6 ans il y a | 0

Réponse apportée
App Designer: How to use a camera in different Callbacks
Hi, Folllowing is the code and app design classdef app1 < matlab.apps.AppBase % Properties that correspond to app com...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Plot size varies even when plotting in a loop
Hi, Following links may help: https://in.mathworks.com/help/matlab/creating_plots/save-figure-at-specific-size-and-resolution....

plus de 6 ans il y a | 0

Réponse apportée
How to uninstall Matlab when it gives u an error?
Hi, The following instructions explain how to uninstall and then reinstall MATLAB on Windows: NOTE: If you have saved any pers...

plus de 6 ans il y a | 2

Réponse apportée
Prespectrive transform for Lane detection project
Hi, Following code may help clc close all clear oim = imread('test1.jpg'); im=oim(475:650,300:1050,:); initial_points=[5...

plus de 6 ans il y a | 0

Réponse apportée
Detection format from 'Simulation 3D Probabilistic Radar'
Hi, The Signal coming out via Ego Sensors block is a "Bus signal" comprising of Number of detection, Measurements, and other pa...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
How to store an interpolated data to get the mean for each new point in X?
Hey, The mean of the interpolated values could be found out using the mean() function in the loop. You may make use of Cell ar...

plus de 6 ans il y a | 0

Réponse apportée
merge two cells to one in loop
Hi, Following code may help clc close all clear data.values=ones(20,200); for i=1:10 A{i}=data.values(:,192); B...

plus de 6 ans il y a | 0

Réponse apportée
using 3x1 matrix to make 21x1 matrix
Hey, Following command may help: f_out = [f(1);repmat([f(2);f(1)+f(3)],10,1)]; Could you elaborate more if this is not the de...

plus de 6 ans il y a | 0

Réponse apportée
Finding Binary Values on 3D matrix
Following code illustrates the find() function upon 3D matrix a(:,:,1) = 0 0 0 0 0 0 0 0 ...

presque 7 ans il y a | 0

Réponse apportée
Spectral Clustering of Image
Hello, The following paper illustrates the use of ASM-based segmentation upon data obtained from spectral partitioning. (Refer ...

presque 7 ans il y a | 0

Réponse apportée
How to run Hough transform in real time?
Hi, You may make use of GPU accelerated Hough transform algorithm to detect a circular object in the acceptance rate of 7 fps (...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
How to make a video of two plots rather than one
Hi, Make use of subplot() to get side by side comparison, as illustrated in the code below. h = figure; subplot(2,1,2); plot...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
how can I make this nonstationary signal's dft graph?
Hi, The following code illustrates a method to find DFT of a nonstationary signal. a=1; f=[5 20 50 1000]; for i=1:length(f) ...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
How to configure the input signal as a step input for a PID tuner?
Hi, Following link's may help https://www.mathworks.com/help/control/ref/pid.html#bsmdmvx-5(PID) https://www.mathworks.com/di...

presque 7 ans il y a | 0

Réponse apportée
Code running, but not being displayed in command window?
Hi, The code seems to be good and functioning as expected (please look over the attachment). Could you please elaborate on the ...

presque 7 ans il y a | 0

Réponse apportée
Understanding How to Manually Code the KDTreeSearcher
Hi, The nearest neighbour search (NN) algorithm aims to find the point in the tree that is nearest to a given input point. This...

presque 7 ans il y a | 0

Réponse apportée
Use unique on a cell array containing two columns
Hello, Kindly provide a small subset of data to replicate your problem. The following link may be helpful: https://www.mathwo...

presque 7 ans il y a | 0

Réponse apportée
Bar Graph attached to Live maping
Following link may help: https://www.mathworks.com/help/matlab/creating_plots/color-analysis-with-bivariate-histogram.html(Colo...

presque 7 ans il y a | 0

Réponse apportée
TIme shifting an audio in a frequency domain
Hey, The following code illustrates the Time-shifting of a signal in the frequency domain. [data,fs] = audioread('FemaleSpeec...

presque 7 ans il y a | 3

Réponse apportée
solving problem for gradient descent
Hi, Following code Illustrates the working of Gradient Descent for 3 variables. To eliminate error changes were made to: Init...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Spline coefficients for data point
Hello, Spline definesa polynomial among the breakpoints in the curve. To define the coefficient at a particular ‘x value’ there...

presque 7 ans il y a | 0

| A accepté

Réponse apportée
Trace a meandering line
Hello, Following are the links to various codes and methods used for Skeletonization https://www.mathworks.com/matlabcentral/f...

presque 7 ans il y a | 0

Réponse apportée
How to make 3D image with 2D images at different angle completing 360 deg
Hi, 3D Image construction could be performed by making use of the following techniques: Making use of Photometric Stereo to re...

presque 7 ans il y a | 0

Réponse apportée
distance between object moving
The following code illustrates the working of regionprops()function to determine the boundary along with the connected component...

presque 7 ans il y a | 0

Réponse apportée
Integrating a standard ellipse using mvnlps
Hi, Mvnlps() is one of the several submissions in MATLAB File Exchange on MATLAB Central which is a forum for our product users...

presque 7 ans il y a | 0

Réponse apportée
R-Squared in Curve-fitting Tool
Hello, Different methods weight the residuals differently while Fitting the curve, leading to a different curve, which is respo...

presque 7 ans il y a | 0

Réponse apportée
More Training data for R-CNN detector causes overfitting?
Hi, Overfitting happens when the model fits too well to the training set. It then becomes difficult for the model to generalize...

presque 7 ans il y a | 1

| A accepté

Réponse apportée
Can we solve this on MATLAB?
Following equation can be solved by making use of curl() and vpasolve() functions, as shown in the below example code: syms x y...

presque 7 ans il y a | 0

Réponse apportée
Fix Color to Value in Contour
Hi, The contour plot uses the current color map of the figure to decide the color pattern. A custom colormap can be used to plo...

presque 7 ans il y a | 0

Charger plus