Respondida
Artefacts deflecting to zero in a signal
seems to me that with filloutliers we can achieve a good result here you may have to tune the parameters to get the best res...

alrededor de 3 años hace | 0

| aceptada

Respondida
Bad Exponential Fit of Data: How to solve a problem with bad parameter estimation
hello a very simple approach can give you the right answer : load('Qdata.mat') % model : y = b*exp(m*x); P = polyfit(X...

alrededor de 3 años hace | 1

| aceptada

Respondida
3D curve fitting
hello again I can make you this suggestion I devised that your curve could be parametrized by these 2 equations : z = a + b...

alrededor de 3 años hace | 0

| aceptada

Respondida
Perform peak fitting, find peaks and label, and integrate certain areas
hello fixed some minor bugs hope it helps % Load Raman data from a text file data = readmatrix('03--Spectrum--006--Spec.D...

alrededor de 3 años hace | 2

Respondida
What to do in matlab when working with images
hello first code example : %% Initalize the data dataDir= fullfile(pwd); % select appropriate directory exts = {'.jpg','...

alrededor de 3 años hace | 0

| aceptada

Respondida
Batch processing images for downsampling
hello see example below - adapt to your own needs %% Initalize the data dataDir= fullfile(pwd); % select appropriate direc...

alrededor de 3 años hace | 0

| aceptada

Respondida
Frequency response using input and output parameters only.
hi you can make a FRF plot of an unknown system from input / output data with tfestimate (requires the Signal Processing Toolb...

alrededor de 3 años hace | 0

Respondida
Formulating a part of a given circle
hello try this i let you double check that the segment has only unique values on the x axis and do match L and h parameters...

alrededor de 3 años hace | 1

| aceptada

Respondida
how to make the trend line identifies x as dependant variable
hello so basically you permute x and y data and then you get the new result in my equation output you have to permute x ...

alrededor de 3 años hace | 0

Respondida
Transfer function using time domain Input and output characteristics
hello this is a job for tfestimate if you don't have the Signal Processing Toolbox, see demo files attached.

alrededor de 3 años hace | 0

Respondida
How to use For loop to the below data?
here you are my friend : % main loop for k = 1:numel(berMap) figure A = berMap(k); % caculate the coverage are...

alrededor de 3 años hace | 0

| aceptada

Respondida
Identification of 2x2 system in SS by separate excitations 1x2
hello there is already tools available for MIMO identification look here : Multivariable Subspace Identification: MOESP - ...

alrededor de 3 años hace | 0

Respondida
Plot data and keep the maximum values
hello several approaches are possible to draw an envelope of your data - like those examples you will notice that none of th...

alrededor de 3 años hace | 1

Respondida
undefine function : error
hello I corrected all the bugs I could find - find my suggestions in the attached zip file now the last point I cannot fully ...

alrededor de 3 años hace | 0

Respondida
Plot only the surfaces within a bounding surface?
hello seems to me there is no need for a for loop to compute ymin & ymax also ymin = - ymax , so we can avoid creating yet a...

alrededor de 3 años hace | 0

Respondida
How to smooth a curve to the lower bound in Matlab
hello smoothn was done for you ! use the 'robust' option to get rid of the outliers smoothn - File Exchange - MATLAB Central...

alrededor de 3 años hace | 0

| aceptada

Respondida
Percentage change in y as a result of 10% reduction in x?
hello try this data file is attached I used this robust smoother : smoothn - File Exchange - MATLAB Central (mathworks.co...

alrededor de 3 años hace | 0

Respondida
application of fft analyzer
hello there are multiple aspects in vibration / dynamic system analysis : response signal analysis either in time or frequen...

alrededor de 3 años hace | 0

| aceptada

Respondida
Creating the discrete-time graph of a recorded audio signal
hello no panic ! if you have records in wav format , you only need audioread to get your data getaudiodata is not needed h...

alrededor de 3 años hace | 0

| aceptada

Respondida
Wishing to remove invalid noisy data from a graph.
My first idea would be to analyse the ratio of variance vs mean value of a buffer of samples (repeat if until the end of the dat...

alrededor de 3 años hace | 0

| aceptada

Respondida
How to interplote and meshgrid 2D scatter plot (bounded by an ir-regular surface)?
hello this should help you move forward side by side the original plot and once resampled (grid data) % Step 1: Plott...

alrededor de 3 años hace | 0

| aceptada

Respondida
code to read BUFKIT formatted model data
hello this can be a simple wrapper to get your data D=readlines('data.txt'); % read as string array ixP1=find(contains(...

alrededor de 3 años hace | 0

| aceptada

Respondida
3D Histogram from raw data
hello see example below - this is equivalent to hist3 % dummy data (col vectors) x = rand(100,1); y = rand(100,1); z = ra...

alrededor de 3 años hace | 0

Respondida
how do i change barwidth of 2 bars simaltaneously
hello I don't think there is a problem with bar simply when you choose a wider bar one can get hidden behind the front bar ...

alrededor de 3 años hace | 0

Respondida
Text on point in a 2D plot
hello you can use text for that job xp = 1:0.5:2*pi+1; yp = 0.1*xp+sin(xp); c = rand(size(xp)); scatter(xp,yp,100,c,'fill...

alrededor de 3 años hace | 0

| aceptada

Respondida
How to make output X Y graph like the picture?
hello you simply have to remember that vertical lines need you to duplicate the x value (with different y values of course) ...

alrededor de 3 años hace | 0

Respondida
"Unfurl" 3D surface to 2D plane (not projection)
hello after a few trials , this is it ! try this : data = readmatrix('Test1.xlsx',"NumHeaderLines",1); % x y z v x = da...

alrededor de 3 años hace | 0

| aceptada

Respondida
How do I get smooth edges for a contourf plot on a log-log scale scatterplot?
hello I can suggest this , although I consider it needs some refinements MFR_1 = [0.93016, 0.13933, 0.04154; 4.75072, 0.96454...

alrededor de 3 años hace | 0

| aceptada

Respondida
A smoother surfplot, maybe with pchip interpolation
hello I used this excellent FEX submission to get this result : smoothn - File Exchange - MATLAB Central (mathworks.com) ...

alrededor de 3 años hace | 0

Respondida
How can I align a sequence of three data points?
hello try this data_A = [0 4 5 7 8 9]; data_B = [4 5 7 8 1 5 6]; data_C = [ 2 5 3 4 5 7 8]; % check that all interse...

alrededor de 3 años hace | 1

| aceptada

Cargar más