Respondida
Split data based on column value to write in different sheets in excel
hello try this : data = [1 45 45; 1 34 46; 2 53 57; 3 34 83; 2 ...

casi 3 años hace | 1

Respondida
Estimating the parameter of a complex equation using maximum likelihood estimation (MLE) method
as i am lazzy, I tried first a simpler model with two decaying exponentials (one was insufficient) y = a.*exp(-b.*x) + c.*exp(...

casi 3 años hace | 0

Respondida
Frequency Response to IR calculation yields shallower Magnitude level?
hi I have done something similar in the past - see below FYI I start with a given FIR filter then computation of the transfer ...

casi 3 años hace | 0

Respondida
How to join a clothoid and an circular arc for a smooth transition?
hello see below your code fixed ; the only error is that when you create the constant radius (circle) segment , your initial a...

casi 3 años hace | 1

| aceptada

Respondida
Create an array with only the increasing values of a pressure time series.
maybe this ? I don't see the benefit of removing the negative slope segments , this creates gaps in the signal was just sm...

casi 3 años hace | 0

Respondida
I have frequency sweep input signal x, and output signal y and want to know phase angle difference between them throughout the timeseries data.
Hello again I tried to extract the amplitude and phase of your x and y signals by "order extraction" , which here is simply a m...

casi 3 años hace | 0

Respondida
How to fill color between two curves?
hello see below FYI, your code does not need a for loop. Take advantage of matlab native vectorized operations % y1(1) = 0 ...

casi 3 años hace | 0

Respondida
How can I convert a .wav file to Pascals?
see here : Matlab Spectrogram: How to convert the dB values to SPL? - MATLAB Answers - MATLAB Central (mathworks.com)

casi 3 años hace | 1

Respondida
Matlab Spectrogram: How to convert the dB values to SPL?
hello I admit it's not always evident to know how n normalize spectrogram data , especially when now in the new matlab release...

casi 3 años hace | 1

Respondida
How Do I filter this zigzag wave?
following my comments above, if you use smoothn - File Exchange - MATLAB Central (mathworks.com) the 'robust' method can remove...

casi 3 años hace | 0

Respondida
How to load a txt file and save the workspace
you can create a structure D where all informations are stored (filenames and data) D = dir('*.txt'); % D is a structure array ...

casi 3 años hace | 0

Respondida
Why is the graph in this code becoming distorted?
hello maybe this ? I simply corrected one of your equation (looking at the one that follows , assumming the second was correct...

casi 3 años hace | 0

| aceptada

Respondida
Identifying regions in matrix rows
hello I tried to put some code together and ended with that ; maybe interesting (?) it will detect the largest region for ea...

casi 3 años hace | 0

Respondida
How to solve error "Arrays have incompatible sizes for this operation?
hello I tried to understand what you wanted to do, and so far my suggestion is as follows : L=load("ver.mat"); t_6=(0:numel...

casi 3 años hace | 0

| aceptada

Respondida
Calculating phase delay for one signal to have the same zero crossings
hello unfortunately you did not provide (attach) the functions you are sing to generate the waveforms nevertheless, see below...

casi 3 años hace | 0

Respondida
Plotting one value from a vector
hello simply change this figure(2); plot(t,L.ver); into : figure(2); channel = 50; % pick value between 1 and 100 plo...

casi 3 años hace | 0

Respondida
Heat Map Representation of error data
hello I could suggest these two solutions either based on the regular heatmap function and creating a specific colormap the...

casi 3 años hace | 0

Respondida
Hovmoller Diagram: longitude (x axis), time (y axis), and z(temperature values)
hello again I modified my code so it should work now on your data as I understand we have here only 12 months of data , so my...

casi 3 años hace | 1

| aceptada

Respondida
Draw a curve defining the bounds of a scatter plot to detect anomalous (sparse or low density) points
hello maybe this ? I simply decided that I wanted the contour line corresponding to a level 5% of F range above the min valu...

casi 3 años hace | 0

Respondida
I need to identify between a healthy wheel and an unhealthy wheel. The data i have were measured using ADXL345 accelerometer
hello you need to learn how to read (load) data and do your signal processing there are more than enough examples availables...

casi 3 años hace | 0

Respondida
Hovmoller Diagram: longitude (x axis), time (y axis), and z(temperature values)
hello maybe this ? I created some dummy data to test my code hope it helps %% dummy data 609x881x372 (lonxlatxtime) aa...

casi 3 años hace | 0

Respondida
for loop arcgridread files
hello try this I didn't index Z and R with k, as I suspect you want to use it right after (inside the for loop) otherwise y...

casi 3 años hace | 0

Respondida
How to use PRBS signal to identify first order transfer parameters
hello see example below from the Bode plot you can easily extract the plant dc gain (here 10) and cut off frequency (fc = 50...

casi 3 años hace | 0

Respondida
Is there a technique to merge two peaks into one peak at the midpoint?
hello maybe this ? (a low tech approach...) load('data.mat') [m,n] = size(data); %% find the two peaks location MinPeak...

casi 3 años hace | 0

| aceptada

Respondida
Read multiple txt files and save them according to their name
hello maybe this is what you want A is now a cell array of structure that you can further expand if you need , for the time ...

casi 3 años hace | 0

| aceptada

Respondida
write function that generates an echo to audio.Why am i getting this error
hello you code can be simplified . Also an echoed signal means you add to the original a fraction (in amplitude) of the delay...

casi 3 años hace | 0

Respondida
Generate pinknoise with same power as audio
hello this would be my suggestion . You don't need to do a fft to get the power of a signal (you can compute it directly in ti...

casi 3 años hace | 0

| aceptada

Respondida
I want to extract outer points of my plot(Chaotic Data Points) and plot it with the extracted outer points.
hello maybe this ? I needed to use a refine time increment dt (1/10th of the original value) so that the outer points are c...

casi 3 años hace | 0

| aceptada

Respondida
Sine Wave Becoming Increasingly Choppy
hello your sampling rate is completely wrong You want to draw a 1000 Hz sine wave , so as pointed out already by @Image Anal...

casi 3 años hace | 1

| aceptada

Respondida
enter values from 0 to N (imposed value) with step of 100 on the x-axis of the bar graph
hello Alberto welcome back ! i suppose you wanted to do this matrix = [64 440; 65 489; 66 581; 67 563]; figure hbh = bar...

casi 3 años hace | 1

| aceptada

Cargar más