Beantwortet
How do I count the number of times my graph crosses two separate lines?
hello maybe this ? the second plot shows the valid points (Ncounts = 4) % dummy data n = 5000; x = 50*(0:n-1)/n; y = -...

24 Tage vor | 0

| akzeptiert

Beantwortet
How to combine two data file in one file?
hello try this : IQ_data = [2756.00000000000 - 1252.00000000000i 2681.00000000000 - 992.000000000000i 2540.00000000000 - 6...

25 Tage vor | 0

| akzeptiert

Beantwortet
Adding specified loop outputs
hello again seems to me you want to sum the first 3 rows so it should be : Sum1=sum(output(1:3,:)); instead of Sum1=su...

25 Tage vor | 1

| akzeptiert

Beantwortet
How to find Quadratic Equivalent Damping?
hello again with some delay, here now the code modified and extended of course we already had the (equivalent) linear damping...

28 Tage vor | 0

| akzeptiert

Beantwortet
Problem in finding the correct Chebyshev interpolation line
hello maybe this ? %% Data input x_data = [1830; 1920; 1940; 1975; 2000; 2020]; %x values y_data = [0.089; 3.52; 4.86; 17....

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
Why does the psd of my filtered signal perfectly overlap my raw signal's one?
hello see code below, the effect of the low pass filter is clearly to be seen on the psd plot now I wonder whatkind of "activ...

etwa ein Monat vor | 1

Beantwortet
Plotting phase noise vs offset frequency of an optoelectronic oscillator...
hello the main problem is that your data has a very coarse frequency resolution so if I remove the content below 10GHz , rem...

etwa ein Monat vor | 0

Beantwortet
Need to put symbols on curve
Like that ? %===========================================================% clc close all; clear; workspace; %===========...

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
Shift Filter outputs to align peaks
hello @Chunru sorry but I was a bit skeptical about your solution based on group delay seems to me the "aligned" output signa...

etwa ein Monat vor | 1

| akzeptiert

Beantwortet
Can I smoothen the cdfplot() result?
some more code to look at - I kept only the best solutions , even though there are probably lot of other solutions also I intr...

etwa ein Monat vor | 1

Beantwortet
How to do optimization coding for minimize peak width ?
hello I simply added a for loop for the del parameter to see how peak amplitude and peak width of the red curve would evolve v...

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
While loop using up to input and fixing input definition
Hello gain, so this is the code with the small changes mentionned above clc clearvars close all fs = 20e3; numFilts = 32;...

etwa ein Monat vor | 1

Beantwortet
required assistance in fitting
so this is the poor"s man optimization (w/o any toolbox) a brute force approach , let's create a 2 parameter grid and evaluate ...

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
I wanted to combine 100 csv files for plotting in Matlab. All the files have same number of columns and rows. Can anyone help?
maybe this ? here I wanted to do a vertical concatenation - up to you to change that portion of the code also , if processi...

etwa 2 Monate vor | 0

Beantwortet
High Frequency Noise baseline filter
hello again an explosive blast record will have a very wide frequency range , the spectrogram will tell you that the signal e...

etwa 2 Monate vor | 0

Beantwortet
Plot velocity profiles along a slope
hello again so this is a starter , would need further work to define correct range of the ruler according to your data %% cre...

etwa 2 Monate vor | 0

Beantwortet
How to delete every nth column in table?
maybe this ? X = (1:9)'*(1:10:50); % remove only 2nd column t = array2table(X,'VariableNames',{'t' 'x' 'y' 'z' 'r'}) t(...

etwa 2 Monate vor | 0

Beantwortet
How would i change this code so that it plots all of the circular paths and markers all at once instead of one after the other?
simply commenting the inner for loop , and you get this result : (I also reduced the number of theta points by factor 2 ) : th...

etwa 2 Monate vor | 0

Beantwortet
How to automatically identify and fit segments of a force-distance curve in MATLAB?
hello maybe this ? I simply wanted stright lines (polyfit order 1) I suggest x0,y0 and x1,y1 as possible candidates for th...

etwa 2 Monate vor | 0

Beantwortet
Impact location detection from accelerometer data
hello so this would be my suggestion I hope my conclusion is not completely wrong ! At the end it seems I can clearly see ...

etwa 2 Monate vor | 0

Beantwortet
Trouble with using plot because of wrong data type
A numerical simulation (no sym) a0 = 0.529177 * 10^(-10); %Bohr radius r = linspace(0,10*a0,100); R = 2*(1/2*a0)^(3/2)*exp(-r...

etwa 2 Monate vor | 1

| akzeptiert

Beantwortet
duration of rain. help
hello this is one way to do it - just plain simple matlab functions . Of course , someone fluent with timetables can do it a...

etwa 2 Monate vor | 2

| akzeptiert

Beantwortet
How to plot multiplot with different range of data?
hello maybe this ? I normalized x1 and x2 so both plots would overlay nicely . A=readmatrix("wan_band.dat"); [x1,y1]...

etwa 2 Monate vor | 0

Beantwortet
How to extract desired variables column data from a table?
hello this is one solution NB that the variables names and the names your are using in the selection are not exactly the sam...

etwa 2 Monate vor | 0

Beantwortet
how to average data points in column 3 based on values in columns 1 and 2
hello as your data seemed to lie in a plane , why not make a plane fit and assume from now the data should belong to that plan...

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
3D grouped bar-plots from 3D matrix
hello again based on the comment / link above, this is what I can offer today %generate somme dummy data groups_x = 3; rows...

etwa 2 Monate vor | 2

| akzeptiert

Beantwortet
How to convert s2p to Impulse Response?
hello see example below : %% create the FRF complex data Fs = 1e3; Freq = linspace(0,Fs/2,200); % make sure freq vector go...

etwa 2 Monate vor | 0

Beantwortet
How to interpolate empty gridcells in the 3D model?
this is you solution : Inpaint over missing data in 1-D, 2-D, 3-D,... ND arrays - File Exchange - MATLAB Central (mathworks.co...

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
Find a controller for a feedback-loop
hello engineering is a mix of knowledge and art. The art of the engineer is to split a complex problem into smaller , simpler ...

etwa 2 Monate vor | 1

Beantwortet
How to merge the three mat files?
hello a quick and dirty solution, you may have to find a way to generalize to more variables in that may be the case in the fu...

etwa 2 Monate vor | 0

| akzeptiert

Mehr laden