photo

Mathieu NOE


Last seen: Today Aktiv seit 2015

Followers: 12   Following: 0

Nachricht

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

Statistik

All
MATLAB Answers

1 Frage
1.919 Antworten

File Exchange

1 Datei

RANG
39
of 298.572

REPUTATION
5.208

BEITRÄGE
1 Frage
1.919 Antworten

ANTWORTZUSTIMMUNG
100.0%

ERHALTENE STIMMEN
486

RANG
17.648 of 20.619

REPUTATION
3

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
1 Datei

DOWNLOADS
2

ALL TIME DOWNLOADS
24

RANG

of 161.704

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
I have a .mat file that is a 2x1000 matrix. I want to get the 2 rows as data that I can imput into cftool. How would I go about this?
hello @Dakota FYI, a simple code that does not need any special toolbox : load('Data.mat') Time = mat(1,:); Data = mat(2,:)...

6 Tage vor | 0

Beantwortet
Change order of Area and Constantline in the same plot
hello xi was missing so I created a dummy one maybe not the smartest solution, but it does the job : %% Parameters xi = li...

18 Tage vor | 1

Beantwortet
How to improve spectrogram plot?
I played a bit with some parameters and changed from imagesc to surf (pcolor would also work) to allow for optionnal frequency d...

18 Tage vor | 0

Beantwortet
Settling time functionality - definition of duration
I could suggest this simple code to answer your last question the first plot shows where the data is within 2% tolerance band ...

18 Tage vor | 0

| akzeptiert

Beantwortet
Selecting which prominence to use with findpeaks
hello again @Henry I am 100% sure to have fully understood all the maths you want to do on your data but I have some suggestion...

19 Tage vor | 0

| akzeptiert

Beantwortet
Data extraction for figure
@Viswajit Talluru with Grabit GRABIT - File Exchange - MATLAB Central it was fairly easy to scan seperatly your 3 curves -...

19 Tage vor | 0

| akzeptiert

Beantwortet
Change colour on grid
hello Andrew one solution is to overlay two mesh plots and ask for the second to have a single bright color (here red) eithe...

20 Tage vor | 1

| akzeptiert

Beantwortet
Simulink Repeating Sequence giving unexpected Results
hello this is probably due to your choice of solver - what are your options ? I opted for a fixed (discrete) sampling with sa...

21 Tage vor | 0

Beantwortet
Spatial Frequency (FFT) estimation from image intensity profiles
hello and welcome back let's try it with fft (have a doubt you will get a more accurate result though) the results are in ac...

21 Tage vor | 0

| akzeptiert

Beantwortet
Improve STFT Plot Clarity
hello @Abo and welcome back ! fist idea with STFT is to maximize the overlap , but anyway the STFT has not the best performan...

21 Tage vor | 1

| akzeptiert

Beantwortet
Fringe spacing and frequency from image
hello this is maybe a bit oversimplified but I assumed that I would not make a big error by considering that the fringes are p...

25 Tage vor | 2

| akzeptiert

Beantwortet
Comment afficher une valeur en fraction?
Bonjour @KINGANGA voici une possibilité : % Given decimal number decimalNumber = 0.33333333333; % Find the closest intege...

26 Tage vor | 0

Beantwortet
How do I find the corner points of an mask
hello let's try with detectHarrisFeatures : not really super efficient I admit , I will propose alternatives ... im = imrea...

28 Tage vor | 0

| akzeptiert

Beantwortet
Problems encountered when using sph2cart
hello I could not find any quiver issue (tried to reproduce it my way) , but at the end I suspected maybe you need to invert t...

28 Tage vor | 0

Beantwortet
How to specify the color of each face independently? Either using plot3 or waterfall plot
let's try something %Data x = [3 4 5 6 7 8]; y = 1:10; z = [0.557668282000000 0.338441078000000 0.234647830000000 0.1715715...

29 Tage vor | 1

| akzeptiert

Beantwortet
how to print a table with hearders all aligned to the center of each column
see attached a nice formatting piece of code for this job example code : data = 1e2.*rand(5,4); fmt = {'%.3g'}; col_header...

29 Tage vor | 0

Beantwortet
How to shift lines to their correction positions (I need to correct figure)
so finally and hopefully I found somehow a path to the solution first problem was to find the best position and slopes for the...

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
Bivariate colorscale for color plot
hello maybe this ? I simply assumed for the demo that f and g would be describing a circle in a 2D space the second plot is...

etwa ein Monat vor | 1

Beantwortet
Writing a loop to compute Indices
hello see basic demo below select which option you want overlap = 0*buffer_size; % overlap expressed in samples (a. For th...

etwa ein Monat vor | 0

Beantwortet
Spider Plot with Standard Deviation as shaded region
hello again I just created a quick and dirty slightly modified function (sorry for messing it ! ) , so I could suggest this - ...

etwa ein Monat vor | 1

| akzeptiert

Beantwortet
SDOF time history analysis
if you need a code to perform some spectral analysis and integration (to get velocity and displacement) you can try this : ...

etwa ein Monat vor | 0

Beantwortet
Correct way to calculate the dominant frequency of time series signal?
hello I was happy at the beginning to share this code , but your signal is so short (in terms of how many cycles are in the wh...

etwa ein Monat vor | 0

Beantwortet
how to plot all zeros on xaxis?
hello this could be one solution, but it's very basic (for the moment) as all x points are displayed with the same spacing , w...

etwa ein Monat vor | 0

| akzeptiert

Beantwortet
How to get the values of x axis only visible at the bottom subplots?
hello maybe this ? (all credits to this answer , adapted to your question : Plot - Remove axis ticks but keep grid lines - MA...

etwa ein Monat vor | 0

Beantwortet
Help with code to fit a BlackBody to data to find temperature
hello seems to me this was a minor issue in the way you code BB, do not use at the same time T as an array and a variable in t...

etwa ein Monat vor | 1

| akzeptiert

Beantwortet
An update about my Code
hello Danny that looks quite similar to another answer of mine : Read values from fvtool graph - MATLAB Answers - MATLAB Cen...

etwa ein Monat vor | 0

Beantwortet
How to use pwm with lqr controller?
hello again I am not sure what it brings here to convert your linear outputs to pwm , but a simple demo below if you want to t...

etwa ein Monat vor | 0

Beantwortet
How can I replicate this plot using the supplied equations?
hello do you mean the last plot ? here a simple code that replicate it : (there is still a bit of work if you want all the...

etwa 2 Monate vor | 0

Beantwortet
Enter multiple values for a single variable
hello and welcome back after all this time In my eyes you are not solving an equation you just computing the numerical output ...

etwa 2 Monate vor | 0

| akzeptiert

Beantwortet
Data must be a single matrix Y or a list of pairs X,Y
hello maybe this ? I prefer to avoid using i and j as loop indexes as those letters usually are reserved as the iamginary un...

etwa 2 Monate vor | 0

Mehr laden