Weixin Wang
Followers: 0 Following: 0
Estadística
4 Preguntas
0 Respuestas
0 Problemas
10 Soluciones
CLASIFICACIÓN
97.058
of 295.673
REPUTACIÓN
0
CONTRIBUCIONES
4 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
75.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.262
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
34.158
of 154.257
CONTRIBUCIONES
0 Problemas
10 Soluciones
PUNTUACIÓN
117
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Continue to next iteration in for-loop while saving data
I have a for-loop and in each iteration it produces about 1Gb data. Since it takes some time to save this data to hard drive, I ...
más de 3 años hace | 1 respuesta | 0
1
respuestaPregunta
How to print in cuda kernel when writing mex files
I'm trying to write cude code and generate a mex file. For debugging purposes, I want to print something in a cuda kernel. When ...
más de 3 años hace | 1 respuesta | 0
1
respuestaResuelto
Spot the outlier
All points except for one lie on a line. Which one is the outlier? Example: You are given a list of x-y pairs in a column ...
alrededor de 4 años hace
Resuelto
Make a run-length companion vector
Given a vector x, return a vector r that indicates the run length of any value in x. Each element in r shows how many times the ...
alrededor de 4 años hace
Resuelto
Flag largest magnitude swings as they occur
You have a phenomenon that produces strictly positive or negative results. delta = [1 -3 4 2 -1 6 -2 -7]; Marching thr...
alrededor de 4 años hace
Resuelto
How many trades represent all the profit?
Given a list of results from trades made: [1 3 -4 2 -1 2 3] We can add them up to see this series of trades made a profit ...
alrededor de 4 años hace
Resuelto
Given a window, how many subsets of a vector sum positive
Given a vector: [1 0 -1 3 2 -3 1] and a window of 2, A sliding window would find: 1 + 0 = 1 0 - 1 = -1 ...
alrededor de 4 años hace
Resuelto
Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...
alrededor de 4 años hace
Resuelto
Solitaire Cipher
Implement the <http://en.wikipedia.org/wiki/Solitaire_(cipher) solitaire cipher>. Since this is from Wikipedia, I am capturin...
alrededor de 4 años hace
Resuelto
Find the biggest empty box
You are given a matrix that contains only ones and zeros. Think of the ones as columns in an otherwise empty floor plan. You wan...
alrededor de 4 años hace
Resuelto
How long is the longest prime diagonal?
Stanislaw Ulam once observed that if the counting numbers are <http://en.wikipedia.org/wiki/Ulam_spiral arranged in a spiral>, t...
alrededor de 4 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
alrededor de 4 años hace
Pregunta
Slowing down when doing calculations with catenated matrix
I'm trying to speed up my code. The original code is here: I think the "kron" function is repeatedly calculated within the ...
alrededor de 4 años hace | 1 respuesta | 0
1
respuestaPregunta
GPU looping through matrices
Hello, I have a very basic question about GPU computing. Suppose I have a 3-by-3-by-1000 array, I want to loop through the third...
más de 4 años hace | 1 respuesta | 0