Réponse apportée
How to compute the correlation coefficient in the two data set.
hello so once we have digitized the picture with grabit , we have two data mat files (attached) available for further processi...

plus de 3 ans il y a | 0

Réponse apportée
Fourier Transform of window functions
hello maybe this can help you wL = 30; % window length win1 = hanning(wL); win1 = win1/sum(win1); % normalize win2 = t...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
Downsampled data exceeds the input data
a demo is maybe more efficient here so the original data gets resampled at 60 Hz by using only the start / end points of the t...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
smoothing with Gaussian Kernel for loop problem
hello try this lambda = 0.05; tv = (1:1:1000)'; nv =length(tv); ys = sin(4*pi*tv./max(tv))+0.25*rand(nv,1);% dummy data...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Correlation of similar Signals
hello maybe this ? define a buffer lenth and an overlap (here I took the max possible overlap) and use corrcoef (take the no...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Import not consistent table data
hello again so this first simple code will extract the data as one single block if you need to separate the data in individu...

plus de 3 ans il y a | 2

| A accepté

Réponse apportée
date time from filename
hello try this code below I use fullfile instead of your method to concat folder and basename your path and filenames shoul...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
creating the chorus effect without using a loop
hello the chorus effect is basically a multiple echo effect ; the echo by itself is a delayed version of the original signal ,...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How can I disregard part of the signal when calculating midline of my data signal?
hello see code below for midline and signal oscillation frequency computation (cycle to cycle "zero" crossing detection) a PI...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Import multiple .txt files and add separate arrays for each
hello Alex see code below natsortfiles may be an option if there is a stringent need to process the files in a truly sorted ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to smooth the curve indicated on the image?
hello you can try this adjust the amount of smoothing (and window type ) in this line : rs = smoothdata(r_new,'gaussian'...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How can I boost audio with a peak filter?
hello according to the doc Design second-order tunable notching and peaking IIR filter - Simulink - MathWorks France this i...

plus de 3 ans il y a | 0

Réponse apportée
Collect several satellite images from the INPE/CPTEC collection
hello Augusto try this code as far as I could find out there are pictures available with a time delta of 10 minutes choose ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to fit a data to a model without using Statistical Toolbox?
hello @Decy it seems the model choosen is not realy a good match with the data (or vice versa) here a demo using fminsearch wi...

plus de 3 ans il y a | 0

Réponse apportée
Find all global minima und maxima of an Graph
hello Benedikt someone will probably tell you how findpeaks is powerfull but sometimes I simply prefer to rely on old but good ...

plus de 3 ans il y a | 1

Réponse apportée
Generating sequences with minimal overlap
hello maybe this ... the result appears in store_str (in your command window) % init edges = (1:1:9); k = 0; store = [];...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Check the data and replace it with corresponding values
hello Adeline try this code to make it a bit more compact and faster I remove the empty columns in your data file. the code w...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Script for audio analyzing
hello try this code FYI, having the sampling rate at 1MHz is massive overkill if you intend to analyse only below 1 kHz. I...

plus de 3 ans il y a | 0

Réponse apportée
How can I find data on excel file and paste it back on excel?
hello you can try this code it could be made a bit simpler bu using the fact that the data to be retrieved from sheet 2 foll...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
FFT spectral leak?
hello the amplitude accuracy depends if your signal frequency matches or not the fft frequency vector bins . If not your estim...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Problems using 'tfest' for generating transfer function
hello again here a bunch of files to post process your data I don't have the ID toolbox but I have the Signal Processing Tbx...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
TXT File Population with Arrays and Text
hello maybe not the cleanest code but writecell make this doable without to much headaches % export results to txt filenam...

plus de 3 ans il y a | 0

Réponse apportée
Collect cmorph data through matlab command window
Quick and dirty fix for the date , as we have it in the nc file name % Download the CPC data used in the script below % Direct...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
I want to generate a lateral speed plot with range of forward speeds
hello you can do a for loop a = 1.34; L = 2.851; m = 2425; Iz = 2700.0; Caf = 1900; Car = 2000; b=L-a; g=9.81; ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Plot step response of transfer function
hello you have 2 mistakes to correct 1 - how to get a z transfer function from the difference equation your num and den are...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
how do you calculate frequency of squarewave
hello you can try this code % dummy data n = 10000; x = 25*(0:n-1)/n; y = sign(sin(x+0.25*x.^2)); threshold = 0.5*ma...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Storing data in columns not in rows
hello why not use a structure or a table ? it's much appropriate when dealing with variable size data sets % Define initial...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
Dimensions of arrays being concatenated are not consistent.
hello this is my suggestion get the data simply by this command : data = str2num(Lines(2)); myFolder = 'mydrive'; f...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
how to determine both of sheet number and name of sheet with (writecell)
hello writecell does not allow you to specify in the same command a sheet number and a sheet name Specify the worksheet to w...

plus de 3 ans il y a | 0

Réponse apportée
Is it possible to align two data sets with irregular sampling while preserving the respective indices?
hello I gave it a try and this is my best result so far first I simply used the time delat between the red dots (easy soluti...

plus de 3 ans il y a | 0

| A accepté

Charger plus