
Mathieu NOE
Hutchinson
Engineer - mechanices /ekectronics / signal processing Average matlab user for 20 years now. Professional Interests: signal processing, adaptive control, noise and vibration processing
Estadísticas
1 Pregunta
1.542 Respuestas
CLASIFICACIÓN
43
of 281.532
REPUTACIÓN
4.152
CONTRIBUCIONES
1 Pregunta
1.542 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
353
CLASIFICACIÓN
of 19.046
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 133.759
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Content Feed
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...
3 días hace | 0
| aceptada
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...
3 días hace | 0
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...
4 días hace | 0
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...
7 días hace | 0
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...
7 días hace | 0
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...
7 días hace | 0
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...
8 días hace | 1
| aceptada
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...
8 días hace | 0
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...
8 días hace | 0
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...
20 días hace | 0
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...
21 días hace | 0
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...
21 días hace | 0
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...
22 días hace | 0
| aceptada
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 ...
22 días hace | 0
| aceptada
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...
22 días hace | 0
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...
24 días hace | 0
| aceptada
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...
24 días hace | 0
| aceptada
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...
24 días hace | 1
| aceptada
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...
28 días hace | 1
| aceptada
Find the optimal value to maximize a function
Hi seems to me that R curves goes up as x0 goes closer to zero (but not rqual to zero otherwise you get Inf values) also all ...
29 días hace | 0
| aceptada
Txt file into matrix while skipping certain lines but storing its data
hello please try this I am using readlog to load the data (worth the try) available here : readlog - File Exchange - MATLA...
alrededor de 1 mes hace | 0
How can I take the average of certain columns in each excel sheets
hello Marion see my example below (the dummy excel file is attached) hope it helps % Importing Data from excel across mult...
2 meses hace | 0
How to calculate 8 days mean from ten years data?
ok so we have to do the processing for each year and pay attention to the remaining (variable length) days NB that as we now h...
2 meses hace | 0
| aceptada
Fitting a model to my data using non linear least square fit method
hello try this , hope it helps results : m = 24.5179 q = 1.2078 data = readmatrix('LVD_AE.xlsx'); x = data(:,1...
2 meses hace | 0
How to fit an equation (catenary equation in 2D) to a 3D dataset (experimental data of a catenary curve in 3D) ?
This is a lazy (tired) guy answer i figure out I could easily transform the 3D array into 2D then do a parabola fit (yes I know...
2 meses hace | 1
Combining vectors in a for loop to form a final matrix
For small tables / arrays I don't pay too much attention to preallocation (but it's important if you are dealing with large data...
2 meses hace | 0
| aceptada
peak average of consecutive values in a matrix array
hello maybe this ? I am using peakseek , this fex submission is available here PeakSeek - File Exchange - MATLAB Central (...
2 meses hace | 0
| aceptada
Optimization problem fitting arrays
hello this is the poor man's solution with fminsearch (as I don't have the optimization toolbox but you can easily use fmincon...
2 meses hace | 0
| aceptada
Filter data by flag columns
hello this is my first attempt , I hope I didn't make any mistake in your requirements interpretation still there is one case...
2 meses hace | 0
| aceptada
cubic interp2 on latitude & longitude data. wind comparison
hello I am not an expert for atmospheric data post processing, buth here are my findings 1 / seems to me flipping the data is...
2 meses hace | 1
| aceptada