Community Profile

photo

Pablo Rozier-Delgado


University Savoie Mont-Blanc (USMB)

Last seen: Today Active since 2022

Followers: 0   Following: 0

Programming Languages:
MATLAB
Spoken Languages:
English, Spanish, French
Professional Interests:
Signal Processing, Sciences, Neuroscience, Biomechanics

Statistics

All
  • First Answer
  • Community Group Solver
  • Solver
  • Thankful Level 1

View badges

Feeds

View by

Answered
Count size of groups of 1's
Another way, without for loop: gpos = [1 1 1 0 0 1 1 0 1 1]'; % Detected NaNs indGroups = bwlabel(gpos) + 1; ...

10 maanden ago | 0

Solved


Natural numbers in string form
Create a cell array of strings containing the first n natural numbers. _Slightly_ harder than it seems like it should be. Ex...

12 maanden ago

Solved


String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
<http://www.mathworks.com/help/matlab/characters-and-strings.html String array> and cell array are two types of containers for s...

12 maanden ago

Solved


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

12 maanden ago

Solved


Convert a Cell Array into an Array
Given a square cell array: x = {'01', '56'; '234', '789'}; return a single character array: y = '0123456789'

12 maanden ago

Solved


Split a string into chunks of specified length
Given a string and a vector of integers, break the string into chunks whose lengths are given by the elements of the vector. Ex...

12 maanden ago

Solved


Fix the last element of a cell array
Note: this is lifted directly from <http://www.mathworks.com/matlabcentral/answers/82825-puzzler-for-a-monday Puzzler for a Mond...

meer dan een jaar ago

Solved


Remove element(s) from cell array
You can easily remove an element (or a column in any dimension) from a normal matrix, but assigning that value (or range) empty....

meer dan een jaar ago

Solved


Convert a numerical matrix into a cell array of strings
Given a numerical matrix, output a *cell array of string*. For example: if input = 1:3 output is {'1','2','3'} whic...

meer dan een jaar ago

Solved


Create a cell array out of a struct
Create a cell array out of a (single) struct with the fieldname in the first column and the value in the second column: in: ...

meer dan een jaar ago

Solved


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

meer dan een jaar ago

Solved


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

meer dan een jaar ago

Answered
Image processing : can we remove objects attached to others ?
After @Image Analyst comments and suggestions, for those who are interested, here it is the final way I did it. The erosion was...

meer dan een jaar ago | 0

Question


Image processing : can we remove objects attached to others ?
Ok I finally ask a question because I can't figure it out despite my researchs. I want to process footprints photos to calculat...

meer dan een jaar ago | 2 answers | 0

2

answers