Mathieu NOE - MATLAB Central
photo

Mathieu NOE


Last seen: Today 2015년부터 활동

Followers: 11   Following: 0

메시지

Engineer - mechanices /ekectronics / signal processing Average matlab user for 20 years now. Professional Interests: signal processing, adaptive control, noise and vibration processing

통계

All
MATLAB AnswersFile ExchangeFrom 06/15 to 03/25Use left and right arrows to move selectionFrom 06/15Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 질문
1,882 답변

File Exchange

1 파일

순위
39
of 297,457

평판
5,114

참여
1 질문
1,882 답변

답변 채택
100.0%

획득한 표
475

순위
17,541 of 20,438

평판
3

평균 평점
0.00

참여
1 파일

다운로드 수
2

ALL TIME 다운로드 수
24

순위

of 158,938

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Ace
  • Thankful Level 2
  • First Submission
  • 36 Month Streak
  • Revival Level 3
  • Knowledgeable Level 5
  • First Answer
  • Explorer
  • First Review

배지 보기

Feeds

보기 기준

답변 있음
Make calculation on line profile (Intensity) through object on image
hello Jason hope you are doing well see my suggestion below hope it helps ! % load data y = readmatrix('LineProfile')...

대략 8시간 전 | 0

답변 있음
Audio data loading and splitting
hello see example below - adapt to you own needs %% Important Notice : % NB : wav files are not searched inside the main f...

5일 전 | 0

답변 있음
Max velocity on 1/3 octave band from Acceleration-Time data
hello again so I decided to make already some modifications in your code , and test it with synthetic data (at least you know ...

8일 전 | 2

답변 있음
How to plot the magnitude and phase of this Fourier Transform frequency response
hello well the code seems to work and the model plot (in red) looks good / in match with your publication maybe the K -ga...

19일 전 | 0

| 수락됨

답변 있음
How can I accurately get the fringes of this profile.
hello this is a very simple (simplistic ?) approach I used peakseek for faster execution vs findpeaks but you can use your o...

22일 전 | 0

| 수락됨

답변 있음
How to calculate radiuses of an airfoil from its coordinates?
hello find below a demo code that computes neutral line and curvature / radiuses of airfoil . there is also a code section tha...

25일 전 | 1

| 수락됨

답변 있음
Scattered 3d data to contourf plot
hello first alternative is : % create somme dummy data N = 20; z = peaks(N); % convert to scatter points z = z(:); x ...

26일 전 | 0

답변 있음
Issues plotting R,theta, T from X,Y,Z data
hello when plotting the X,Y,Z data you get a cylinder or something like a cylinder with elliptical shape I removed the X di...

27일 전 | 0

| 수락됨

답변 있음
How can I make my scatter plot markers opaque, or semi transparent?
hello again a small demo to see the effect of the scatter function parameter 'MarkerFaceAlpha' on the dots transparency wit...

대략 1개월 전 | 0

답변 있음
Plotting Polar Plots using time series data
hello again well, maybe I'm stupid but I coud not yet figure out how to use Perfect Polar Plots without having to spend some ...

대략 1개월 전 | 1

| 수락됨

답변 있음
how to filter data by rate of change?
hello I was thinking that I could use the "baseline" correction approach, then apply a scale factor on the baseline compensat...

대략 1개월 전 | 0

| 수락됨

답변 있음
How would you implement this reverb structure
FYI this is a code that implement 3 reverbs hope it helps infile='DirectGuitar.wav'; outfile='out_reverb.wav'; % read t...

대략 1개월 전 | 0

답변 있음
Plot hatched bars with the hatched legends
hello is this the correct result you expect ? two simple corrections (wrong indexes) 1/ to get the correct bars hatched : ...

대략 1개월 전 | 0

| 수락됨

답변 있음
how can I link subplots (for brush data)?
tx to @NVSL for his contribution I can add these little upgrades to your code , like having only one call to readtable at each...

대략 1개월 전 | 0

답변 있음
time lag where the phase of the signals is not consistent
maybe this ? Split the data in smaller chuncks and do the xcorr on it. you can choose the buffer size and overlap (as you woul...

대략 1개월 전 | 1

| 수락됨

답변 있음
Plot lines with curves from csv file
maybe this ? I'm surprised to be lucky on monday morning rounded corners appears now as red arcs of circle , but there's a bit...

대략 1개월 전 | 0

| 수락됨

답변 있음
Image Processing for ultrasound
let's try some stuff ok I am not an image processing expert , so use that or not ... filename = 'image_needle.jpg'; inp...

대략 2개월 전 | 0

답변 있음
Reconstructing signal using the IFFT
hello try this (it works for images but also for any 2D numerical array) output = input with minimal error : max(abs(outpic...

대략 2개월 전 | 1

답변 있음
Why there's opposite fit results phenomenon between the oddnomial and the evennmnial?
hello I suspect this is what you wanted to do (?) load('Ranking.mat') plot(RANKING,Total);grid on hold on order = 5; % 3...

대략 2개월 전 | 1

| 수락됨

답변 있음
spectrogram x-axis match with data
hello again so the problem was simply that you inverted time and frequency vectors when calling imagesc ! I guess the mistak...

대략 2개월 전 | 0

| 수락됨

답변 있음
Animating a 2-D Array as a function of time
not really sure to understand how it should look like , but maybe .... this ? ppdtrace = 0.75+0.5*rand(1200,8); figure(1) ...

대략 2개월 전 | 0

| 수락됨

답변 있음
unable to iterate serially through files in a for loop
hello @shedrach try this as simple approach where I first look at the xls files and create a 2D array that contains month and...

대략 2개월 전 | 0

답변 있음
Issue with dispaly of 3D images created from multiple 2D slices
For a 3D rendering (like MRI) I suggest you try this : vol3d v2 - File Exchange - MATLAB Central %% create a 3D rendering o...

대략 2개월 전 | 0

답변 있음
spectrogram x-axis match with data
this can also helps you : %%Method 1: equate axis sizes for all axes after adding colorbar % Size of axes without a colorbar ...

대략 2개월 전 | 0

답변 있음
How to apply a threshold to gevfit?
hello you can already have a better fit without the threshold and use it only to truncate the fitted curve (but I agree it's...

대략 2개월 전 | 0

답변 있음
Slice Displaying Grids Instead of Color
hello again there was just one mistake : slice(x,y,z,ta,[],[],1:4); to be replaced with : slice(x,y,z,ta,[],[],kz(1:4)); beca...

대략 2개월 전 | 0

| 수락됨

답변 있음
Function 'boundary' not supported for code generation. How to solve this?
hello based on code seen here : https://fr.mathworks.com/matlabcentral/answers/299796-tight-boundary-around-a-set-of-points ...

대략 2개월 전 | 0

답변 있음
how do I implement a real time FFT in simulink?
hello why not simply use a counter to do the job ? (as we deal with a sinusoidal wave) you need one counter for the frequen...

대략 2개월 전 | 0

답변 있음
How to calculate only several frequency with FFT ?
hello try this DFT on a specified frequency - File Exchange - MATLAB Central

대략 2개월 전 | 1

| 수락됨

답변 있음
I want to use a low-pass filter to cut off frequencies above the cutoff frequency.
hello I notice that the cutoff freq is very low compared to fs , so maybe lowpass has a numerical problem when the normalized ...

대략 2개월 전 | 0

더 보기