Joel Miller
Naval Research Laboratory
Followers: 0 Following: 0
Estadística
2 Preguntas
6 Respuestas
CLASIFICACIÓN
3.229
of 295.569
REPUTACIÓN
17
CONTRIBUCIONES
2 Preguntas
6 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
4
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.105
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
Feeds
Pregunta
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...
casi 4 años hace | 1 respuesta | 2
1
respuestaHow 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...
casi 5 años hace | 0
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...
alrededor de 6 años hace | 0
Pregunta
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(...
más de 6 años hace | 1 respuesta | 1
1
respuestaReplacing 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'}; ...
casi 7 años hace | 0
| aceptada
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...
casi 7 años hace | 1
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...
casi 7 años hace | 0
| aceptada
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...
casi 7 años hace | 0
| aceptada