Howard Wilton
Followers: 0 Following: 0
Estadística
11 Preguntas
0 Respuestas
CLASIFICACIÓN
215.754
of 295.527
REPUTACIÓN
0
CONTRIBUCIONES
11 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
81.82%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.242
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 154.057
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
Generate combinations with scaleable code
I have a tight piece of code which generates a 16x4 matrix which essentially is 16 vectors with 4 elements each and i want all t...
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Vectorize application of xcorr() function
For the following code, t = 0:1e-3:1-1e-3; AF_hat = []; fd_ = -8:0.1:8; for fd = fd_ AF_hat = [AF_hat; xcorr(s,s.*exp...
casi 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Vectorization of a for loop to increase speed
I am looking to embed an logical expression in an equation. The code example below is to show the problem and is not a reflecti...
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Another question on eliminating for loops....
I would like to eliminate for loops in the following code, L=3; N=L; R=L^2 * N^2; mat = int8(zeros(R,4)); ind = 1; for n =...
alrededor de 2 años hace | 2 respuestas | 0
2
respuestasPregunta
Eliminate a for loop to increase speed
I have a code snippet below which uses a for loop that I am trying to eliminate as I need to scale up to larger values of and ....
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Code optimization by way of selective computations
I have the following code: clc; clearvars; Ts = 1e-1; t = 0:Ts:1-Ts flag = mod(1:length(t),2) s_t = exp(1i*2*pi*t) ...
alrededor de 2 años hace | 2 respuestas | 0
2
respuestasPregunta
Replicate matrix elements without for loop
I am trying to take the matrix base =[1 2; 3 4] and replicate the elements to give expn = [ 1 1 2 2; 1 1 2 2; 3 3 4 4; 3 3 ...
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Avoid for loop in multi-dimensional problem
I am looking to create a 3D matrix the achieves the following: A(:,:,1)=[0 -2*pi; 2*pi 0]; A(:,:,2)=[0 -4*pi; 4*pi 0]; Ultimat...
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Optimization of code with double for-loops
I am looking to optimize the following code specifically, and more generally, I am trying to learn optimization techniques in MA...
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Generate a formula from equation
I am trying to plot the following, where , and is a constant. I wish to create a vector of data using the vector so that my...
alrededor de 2 años hace | 1 respuesta | 0
1
respuestaPregunta
Elimination of for loops
I am learning how to optimize code in MATLAB. I have the following mathematical experession, where is a unit pulse of lengt...
alrededor de 2 años hace | 2 respuestas | 0