Paolo Binetti
Followers: 0 Following: 0
Statistics
23 Questions
0 Answers
RANK
17,862
of 295,569
REPUTATION
2
CONTRIBUTIONS
23 Questions
0 Answers
ANSWER ACCEPTANCE
78.26%
VOTES RECEIVED
2
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
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....
6 years ago | 2 answers | 0
2
answersQuestion
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)?
6 years ago | 3 answers | 1
3
answersQuestion
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...
6 years ago | 1 answer | 0
1
answerQuestion
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...
6 years ago | 0 answers | 0
0
answersQuestion
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...
7 years ago | 2 answers | 0
2
answersQuestion
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...
7 years ago | 0 answers | 0
0
answersQuestion
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...
7 years ago | 1 answer | 0
1
answerQuestion
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...
7 years ago | 1 answer | 0
1
answerQuestion
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...
7 years ago | 1 answer | 0
1
answerQuestion
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))'; ...
7 years ago | 2 answers | 0
2
answersQuestion
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...
8 years ago | 1 answer | 0
1
answerQuestion
Vectorizing a structure assignment
Is vectorizing this for-loop possible and faster? nodes = cellstr(['GAA'; 'AACAG'; 'AAG'; 'AT'; 'ACA'; 'ACCGTTA';]); % samp...
8 years ago | 1 answer | 0
1
answerQuestion
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...
8 years ago | 2 answers | 0
2
answersQuestion
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}...
8 years ago | 2 answers | 0
2
answersQuestion
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...
8 years ago | 1 answer | 0
1
answerQuestion
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 ...
8 years ago | 2 answers | 0
2
answersQuestion
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...
8 years ago | 2 answers | 0
2
answersQuestion
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...
8 years ago | 1 answer | 0
1
answerQuestion
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 ...
8 years ago | 1 answer | 0
1
answerQuestion
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...
8 years ago | 1 answer | 0
1
answerQuestion
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...
8 years ago | 1 answer | 0
1
answerQuestion
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...
8 years ago | 3 answers | 0
3
answersQuestion
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...
8 years ago | 2 answers | 1