photo

Paolo Binetti


Last seen: 3 months ago Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

23 Questions
0 Answers

RANK
18,632
of 300,571

REPUTATION
2

CONTRIBUTIONS
23 Questions
0 Answers

ANSWER ACCEPTANCE
78.26%

VOTES RECEIVED
2

RANK
 of 21,027

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 169,680

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

  • First Review
  • Thankful Level 3

View badges

Feeds

View by

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....

7 years ago | 2 answers | 0

2

answers

Question


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)?

7 years ago | 3 answers | 1

3

answers

Question


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...

7 years ago | 1 answer | 0

1

answer

Question


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...

7 years ago | 1 answer | 0

1

answer

Question


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...

8 years ago | 2 answers | 0

2

answers

Question


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...

8 years ago | 0 answers | 0

0

answers

Question


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...

8 years ago | 1 answer | 0

1

answer

Question


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...

8 years ago | 1 answer | 0

1

answer

Question


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...

8 years ago | 1 answer | 0

1

answer

Question


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))'; ...

8 years ago | 2 answers | 0

2

answers

Question


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

answer

Question


Vectorizing a structure assignment
Is vectorizing this for-loop possible and faster? nodes = cellstr(['GAA'; 'AACAG'; 'AAG'; 'AT'; 'ACA'; 'ACCGTTA';]); % samp...

9 years ago | 1 answer | 0

1

answer

Question


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...

9 years ago | 2 answers | 0

2

answers

Question


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}...

9 years ago | 2 answers | 0

2

answers

Question


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...

9 years ago | 1 answer | 0

1

answer

Question


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 ...

9 years ago | 2 answers | 0

2

answers

Question


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...

9 years ago | 2 answers | 0

2

answers

Question


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...

9 years ago | 1 answer | 0

1

answer

Question


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 ...

9 years ago | 1 answer | 0

1

answer

Question


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...

9 years ago | 1 answer | 0

1

answer

Question


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...

9 years ago | 1 answer | 0

1

answer

Question


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...

9 years ago | 3 answers | 0

3

answers

Question


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...

9 years ago | 2 answers | 1

2

answers