Answered
vector index of consecutive gap (NaN) lengths?
Thomas' answer is faster, but here is my go: A = [2 4 NaN 7 9 NaN NaN NaN 32 NaN NaN 8]; idx = isnan(A); [B n]= bwlab...

12 years ago | 1

Solved


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

12 years ago

Question


Finding distance between endpoints of image segment: PixelList vs 'endpoints'
New Code: %% Calculate Tortuosity disp('Calculating tortuosity of large segments'); V = thin8-imdilate(cr...

12 years ago | 2 answers | 1

2

answers

Solved


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

12 years ago

Answered
Filling with color the space between to polynomial curves to represent error area.
Check out this FEX submission, it should do what you want: <http://www.mathworks.com/matlabcentral/fileexchange/13188-shade-...

12 years ago | 0

Answered
Reshaping Blobs in a Binary
use region props area measurements and dilate the centroid points with a disk structuring element with the appropriate radius (a...

12 years ago | 0

Question


Help understanding the imbothat function.
I am using the function _imbothat_ as part of a larger image processing algorithm and it works great for what I need (I found th...

12 years ago | 1 answer | 1

1

answer

Answered
How to segment 2D breast images using fuzzy c-means algorithm
I am guessing you are using a DICOM file since this is a CT image? If so, use Image = dicomread(filename); (Help page ...

12 years ago | 1

Solved


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

12 years ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

12 years ago

Solved


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

12 years ago

Answered
Small simple question about displaying multiple pictures or objects
% Generate random pictures PicNum = 5; PicSize = 100; J = zeros(PicSize,PicSize,PicNum); % Always good to preallocate...

12 years ago | 1

| accepted

Answered
Local maxima
<https://www.google.com/search?q=local+maxima+matlab>

12 years ago | 0

Solved


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

12 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

12 years ago

Answered
Generating reconstructed image from a sinogram without using 'iradon'
<http://www.wepapers.com/Papers/78923/Filtered_Backprojection_Algorithm_in_MATLAB.ppt> That may help you.

12 years ago | 0

Answered
noise removel
I = 3 * sin(.3*[1:500]')*ones(1,500) + 3 * cos(.2*[1:500]')*ones(1,500) + 0.5*ones([500 500]); % Generate random sine wave im...

12 years ago | 0

Answered
algorithm strategy
http://scholar.google.com/ have fun.

12 years ago | 0

Answered
How to make a FOR loop to be efficient
Perhaps break this into two separate iterations where the first optimization happens more crudely using parameters spaced more g...

12 years ago | 0

Solved


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

12 years ago

Solved


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

12 years ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

12 years ago

Solved


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

12 years ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

12 years ago

Solved


Add two numbers
Given a and b, return the sum a+b in c.

12 years ago

Solved


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

12 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

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

12 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

12 years ago

Answered
Background Subtraction
There are various methods to better segment your image and most are best dealt with on a case by case basis. Check out Image ...

12 years ago | 0

Load more