Answered
K Mean Clustering Output Results Plotting
<http://in.mathworks.com/help/stats/kmeans.html;jsessionid=e114175ea894fec69d5da8c43ee2 kmean clustering>

11 years ago | 0

Answered
texture analysis in MATLAB
* <http://in.mathworks.com/matlabcentral/fileexchange/25057-texture-feature-extraction-gldm texture feature>

11 years ago | 0

Answered
How to convert frames to video?
<http://imageprocessingblog.com/how-to-create-a-video-from-image-files/ frames to video>

11 years ago | 0

Answered
How to solve for subscripted assignment mismatch error in for loop?
i am not sure but if you do like below error removed solK(n+1) =solve(eqn, K);

11 years ago | 0

Solved


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

11 years ago

Solved


Celcius to Kelvin
Convert Celsius degrees to Kelvin temperature.

11 years ago

Solved


Is it a number?
Determine if input is numeric. If it is,output is 1; if it is not, output is 0.

11 years ago

Solved


Number of digits in an integer
Specifies how many digits in a given integer. Example: in=100 ==> out=3

11 years ago

Solved


Given a 4x4 matrix, swap the two middle columns
If a = [1 2 3 4; 1 2 3 4; 1 2 3 4; 1 2 3 4]; then the result is ans = 1 3 2 4 1 3 2...

11 years ago

Solved


Return 'on' or 'off'
When the input is true, return 'on', otherwise, return 'off'.

11 years ago

Solved


Sum the numbers on the main diagonal
Sum the numbers on the main diagonal of an n-by-n matrix. For input: A = [1 2 4 3 6 2 2 4 7]...

11 years ago

Solved


Replace Vector Elements
Replace all elements in a vector which are equal to or smaller than zero with 0.1. Example: A = [1 2 3 -1 0 2 -3 -80]; ...

11 years ago

Answered
Type of Medical Image for PCA and LDA Feature Extraction
i have worked with MRI.

11 years ago | 0

Answered
feature extraction using local binary pattern
you will get a binary pattern like 10100011 .wich will be unique for every image.

11 years ago | 0

Answered
How to program for feature extraction from an image?
I=imread('Input image') Feature1 = mean2(I) Feature2 = std2(I)

11 years ago | 0

| accepted

Answered
for loop help matlab error
num=20; for i=2:num; Tc0=110; Tc(20)=27; Tc(1)=109; detaTc=(Tc0-Tc(20))/num; Tc(i)=(Tc0- detaTc) Tc0=Tc(i); i...

11 years ago | 0

Answered
Guide on an Idea
<http://imageprocessingblog.com/detecting-and-counting-objects-with-circular-features/ object counting> <http://in.mathworks.co...

11 years ago | 0

Answered
Running the mcc function from cmd
<http://www.tiij.org/issues/5_1/5_1f/5_1f.html convert matlab projects to executable files.>

11 years ago | 0

Solved


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...

11 years ago

Solved


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

11 years ago

Solved


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

11 years ago

Solved


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

11 years ago

Solved


Insert zeros into vector
Insert zeros after each elements in the vector. Number of zeros is specified as the input parameter. For example: x = [1 ...

11 years ago

Solved


Min of a Matrix
Return the minimum value in the given matrix.

11 years ago

Solved


Angle between two vectors
You have two vectors , determine the angle between these two vectors For example: u = [0 0 1]; v = [1 0 0]; The a...

11 years ago

Solved


Try 1.5.4: Celsius to Fahrenheit
Write a program to convert an input given in Celsius to Fahrenheit. Examples: Input celsiusValue = 100 Output fahrValu...

11 years ago

Solved


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

11 years ago

Answered
how can I delete all value in matrix (for example my matrix include a lot of ' NaN not a number' and i want to delete this)
MFCCs_Sum(isnan(MFCCs_Sum))=0 or MFCCs_Sum(isnan(MFCCs_Sum))=[]

11 years ago | 0

| accepted

Solved


Determine Whether an array is empty
Input a matrix x, output y is TRUE if x is empty, otherwise FALSE.

11 years ago

Solved


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

11 years ago

Load more