photo

Joel Miller


Naval Research Laboratory

Last seen: etwa 4 Jahre vor Aktiv seit 2017

Followers: 0   Following: 0

Nachricht

Statistik

MATLAB Answers

2 Fragen
6 Antworten

RANG
3.313
of 300.381

REPUTATION
17

BEITRÄGE
2 Fragen
6 Antworten

ANTWORTZUSTIMMUNG
100.0%

ERHALTENE STIMMEN
4

RANG
 of 20.941

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.477

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

  • Thankful Level 2
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Behavior of "unique" with mixed complex numbers
I have a large set of complex number that I want to map to an integer grid on the complex plane, removing redundant values. A sm...

fast 5 Jahre vor | 1 Antwort | 2

1

Antwort

Beantwortet
How to read data after a specific word from txt file?
Auwal, if I have a series of files in a directory, e.g. data1.txt, data2.txt, data3.txt, etc., I can use the directory command t...

fast 6 Jahre vor | 0

Beantwortet
How to average 5 rows of a matrix iteratively?
I am unsure whether you want to average rows 1-5, 2-6, 3-7, etc., or rows 1-5, 6-10, 11-15, etc. I assume the number of rows in...

etwa 7 Jahre vor | 0

Frage


Change in linprog.m output?
I use the following code to fit multiple data sets using linprog.m. for k=1:nsets b = [data(:,k)+2*noise; -data(...

etwa 7 Jahre vor | 1 Antwort | 1

1

Antwort

Beantwortet
Replacing 1 table cell value with a corresponding table cell value
This may not be the fastest method, but it works (I've replaced "PXY7' with 's'): B1={'a';'s';'b'}; B2={'b';'s';'a'}; ...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
Adding Random phase causes fft anomalies?
If you are trying to randomly shift the phase of the sinusoids, sin(2*pi.*f(a) .* dt), then random_phase should be a scalar. Wh...

fast 8 Jahre vor | 1

Beantwortet
What is the most efficient way to find the position in the column of a matrix where the value drops below a given threshold (values are constantly decreasing down the columns)?
Similar to the previous answer, but without the meshgrid: largelogical = largematrix <= 1; [value, index] = max(largelog...

fast 8 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot the difference between y components for all x?
Hi, I think this does what you are looking for: plot(t, iEc, '-or', t, Ec, '-ob', [t; t], [iEc; Ec], '-k') str = num2...

fast 8 Jahre vor | 0

| akzeptiert