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

quasi 12 anni fa | 1

Risolto


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

quasi 12 anni fa

Domanda


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

quasi 12 anni fa | 2 risposte | 1

2

risposte

Risolto


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

quasi 12 anni fa

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

quasi 12 anni fa | 0

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

quasi 12 anni fa | 0

Domanda


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

quasi 12 anni fa | 1 risposta | 1

1

risposta

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

quasi 12 anni fa | 1

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

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

quasi 12 anni fa | 1

| accettato

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

quasi 12 anni fa | 0

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

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

quasi 12 anni fa | 0

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

quasi 12 anni fa | 0

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

quasi 12 anni fa | 0

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

quasi 12 anni fa | 0

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

Risolto


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

quasi 12 anni fa

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

quasi 12 anni fa | 0

Carica altro