Paolo Binetti
Followers: 0 Following: 0
Estadística
23 Preguntas
0 Respuestas
CLASIFICACIÓN
17.862
of 295.569
REPUTACIÓN
2
CONTRIBUCIONES
23 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
78.26%
VOTOS RECIBIDOS
2
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
Reading text file word by word
Input is the attached text file, with one long word, a newline, then several equal-length short words separated by white spaces....
alrededor de 6 años hace | 2 respuestas | 0
2
respuestasPregunta
Inverse of sorting arrangement
[B,I] = sort(A) output is such that B = A(I). What would be the most efficient way to rather get B and J, such that A = B(J)?
alrededor de 6 años hace | 3 respuestas | 1
3
respuestasPregunta
fprintf is printing strange characters instead of numbers
I want to print a vector of unsigned integers to a text file, with a space between each number. But the file I get is just weird...
alrededor de 6 años hace | 1 respuesta | 0
1
respuestaPregunta
How can you visualize graphs with string-labeled edges?
With the _biograph_ function you can generate a graph object, which you can then visualize with the _view_ function. But it seem...
más de 6 años hace | 0 respuestas | 0
0
respuestasPregunta
Faster alternative to containers.Map
Profiling a script (attached, along with a sample input data file), I have found that looking up a Map generated with containers...
alrededor de 7 años hace | 2 respuestas | 0
2
respuestasPregunta
Speeding up dynamic programming code
Is there a way to speed up this piece of code implementing a dynamic programming algorithm? % sample input v = repmat('C...
más de 7 años hace | 0 respuestas | 0
0
respuestasPregunta
Count common elements of two vectors, including repeats
I would like to count the common elements of two vectors a and b of integers, including repeats. For example, for: a = [9 1...
más de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Generate neighbors of a string
I need to generate a cell array (or char array) containing all d-neighbors of a string of lenght k. This means all the k-long st...
más de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
Extract data from a non-rectangular text file, efficiently
In spite of going through Matlab help and several attempts, I still do not get how to use "textscan" or other relevant functions...
más de 7 años hace | 1 respuesta | 0
1
respuestaPregunta
How to reshape two cell arrays of strings into a cell array of cell arrays
Is there a neat way to vectorize the for-loop below? n_nodes = 2^(20-1); nodes = cellstr(dec2bin(0:n_nodes-1))'; ...
más de 7 años hace | 2 respuestas | 0
2
respuestasPregunta
Reading and processing data from text file to matlab variable quickly
I use the following code to read data from a text file and process it into two cell arrays, and it works, but can it be done fas...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Vectorizing a structure assignment
Is vectorizing this for-loop possible and faster? nodes = cellstr(['GAA'; 'AACAG'; 'AAG'; 'AT'; 'ACA'; 'ACCGTTA';]); % samp...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Vectorizing multiple string comparison
Is there a way to significantly speed up this loop, perhaps by vectorizing it? Inputs in attachment. I do not have a Matlab vers...
casi 8 años hace | 2 respuestas | 0
2
respuestasPregunta
Generating a vector containing the sizes of all cells of a cell array, along a specific dimension
Is there a way to vectorize this? (I tried with "cellfun", but did not succeed). for i = 1:numel(a) s(i) = size(a{i}...
casi 8 años hace | 2 respuestas | 0
2
respuestasPregunta
How to read a text file into a char array
This is probably trivial, but I have not found an easy way to convert a text file of n lines and m columns (sample attached) int...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Improving efficiency of a char array function
I have built a function to be run 100000 times in a loop. Its input, "motifs", is a full 20x15 char array, containing only four ...
casi 8 años hace | 2 respuestas | 0
2
respuestasPregunta
How to efficiently generate a random integer within a range from an arbitrary probability distribution
I need to generate a random integer within a range from an arbitrary probability distribution, within a loop of 100000 iteration...
casi 8 años hace | 2 respuestas | 0
2
respuestasPregunta
How to efficiently generate a new array by indexing an array with another array
Is there a faster way to implement this loop, maybe vectorizing it? for j = 1:m C(:,j) = B(A(:,j,k),j); end wh...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
How to vectorize strfind
Is it possible to use strfind in a vectorized way? Suppose I want to get find not just one pattern inside a string, but several ...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Converting a text file into strings and integers
I have .txt input files with a very simple structure, of which I attach an example. I want to convert its content in strings and...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Replacing characters with integers in a very long string
I have a string of a few millions characters, want to replace it with a vector of integers according to simple rules, such as 'C...
casi 8 años hace | 1 respuesta | 0
1
respuestaPregunta
Given a very long string, replace chars with numbers and obtain cumulative sum vector
As input I have a vector of a few million char, which can be 'A', 'C', 'G', 'T'. The vector is called sequence. As output I w...
casi 8 años hace | 3 respuestas | 0
3
respuestasPregunta
How to vectorize a specific for-loop
I am trying to vectorize the for-loop hereafter. Would you have any hint? Thank you for i = 1 : numel(text)-k+1 % "text" i...
casi 8 años hace | 2 respuestas | 1