Community Profile

photo

Cris Luengo


Last seen: Today 2009년부터 활동

Followers: 0   Following: 0

연락

http://www.crisluengo.net/ Professional Interests: Image analysis

통계

All
  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 2
  • First Review
  • GitHub Submissions Level 1
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Creator
  • Commenter
  • Promoter
  • Solver

배지 보기

Feeds

보기 기준

제출됨


DIPimage
Toolbox for Quantitative Image Analysis

14일 전 | 다운로드 수: 36 |

Thumbnail

답변 있음
How to manually select the libstdc++ library to use to resolve a "version 'GLIBCXX_#.#.##' not found" error?
The official solution to this (notwithstanding a MathWorks staff member suggesting LD_PRELOAD), is to install a version of GCC t...

6개월 전 | 1

제출됨


interpolate_string
Applies string interpolation (also known as variable expansion or variable substitution) in a string.

대략 2년 전 | 다운로드 수: 1 |

문제를 풀었습니다


Scrabble Scores
Given a word, determine its score in <http://en.wikipedia.org/wiki/Scrabble Scrabble>. The input string will always be provi...

3년 초과 전

문제를 풀었습니다


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

3년 초과 전

답변 있음
Why function gradmag isn´t working for me?
This code, which you have copied from <https://www.crisluengo.net/index.php/archives/217 my blog>, requires DIPimage to run. Get...

거의 6년 전 | 0

답변 있음
mxCreateSharedDataCopy no longer supported in R2018a
Note that the new C++ interface (introduced in R2018a) has documented ways of creating shared data copies: <https://www.mathw...

거의 6년 전 | 1

답변 있음
.mex File crashes when executed in rapid succession
pointer[(iField + iSensor * 11) * bufferSize + iElement] should probably be pointer[(iField + iSensor * 11) * nNoEleme...

6년 초과 전 | 1

| 수락됨

답변 있음
UTF-8 strings in MEX-files
A solution when using C++11: I found this answer on StackOverflow: http://stackoverflow.com/a/38383389 It turns out C++11 ha...

대략 7년 전 | 1

| 수락됨

질문


UTF-8 strings in MEX-files
This question has been asked here before, but not with any satisfying answers. Since all those answers, a new documented functio...

대략 7년 전 | 답변 수: 3 | 1

3

답변

답변 있음
Determine if using HG2
Revisiting this issue. The best method discussed here is using `graphics` version. However, you currently get a warning when ...

대략 7년 전 | 0

제출됨


boxplot
Elegant box plot with a few customisation features

거의 9년 전 | 다운로드 수: 4 |

Thumbnail

제출됨


svg_fix_viewbox(in_name,varargin)
Make SVG file stretch with containing HTML element

대략 9년 전 | 다운로드 수: 3 |

답변 있음
Determine if using HG2
You can simply check the class of the figure handle: function tf = ishg2(fig) tf = isa(h,'matlab.ui.Figure'); or: ...

9년 초과 전 | 2

답변 있음
DIPimage initialise
If you downloaded DIPimage from its website, <http://www.diplib.org/>, you would have noticed three things: 1- The installati...

9년 초과 전 | 0

답변 있음
DIPimage – What is your experience?
Dear Marco, I am the main developer of DIPimage. Thank you for the nice words. I understand hesitation among people used t...

9년 초과 전 | 0

| 수락됨

문제를 풀었습니다


Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...

11년 초과 전

문제를 풀었습니다


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

11년 초과 전

문제를 풀었습니다


radius of a spherical planet
you just measured its surface area, that is the input.

11년 초과 전

문제를 풀었습니다


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

11년 초과 전

질문


Unlocking answers to last Cody problem?
I've written a valid answer to the last Cody problem, but it is not even close to the best answer. I have no idea how they made ...

11년 초과 전 | 답변 수: 1 | 2

1

답변

문제를 풀었습니다


Find the palindrome
Given the string a, find the longest palindromic sub-string b. So when a = 'xkayakyy'; you should return b = 'kayak';

11년 초과 전

문제를 풀었습니다


Prime factor digits
Consider the following number system. Calculate the prime factorization for each number n, then represent the prime factors in a...

11년 초과 전

문제를 풀었습니다


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

11년 초과 전

문제를 풀었습니다


It dseon't mettar waht oedrr the lrettes in a wrod are.
An internet meme from 2003 (read more <http://www.snopes.com/language/apocryph/cambridge.asp here>) asserted that readers are re...

11년 초과 전

문제를 풀었습니다


Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...

11년 초과 전

문제를 풀었습니다


Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

11년 초과 전

문제를 풀었습니다


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

거의 12년 전

문제를 풀었습니다


Rotate input square matrix 90 degrees CCW without rot90
Rotate input matrix (which will be square) 90 degrees counter-clockwise without using rot90,flipud,fliplr, or flipdim (or eval)....

거의 12년 전

문제를 풀었습니다


Mandelbrot Number Test [Real+Imaginary]
The <http://en.wikipedia.org/wiki/Mandelbrot_set Mandelbrot Set> is built around a simple iterative equation. z(1) = c z...

거의 12년 전

더 보기