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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

Beantwortet
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);

mehr als 11 Jahre vor | 0

Gelöst


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

mehr als 11 Jahre vor

Gelöst


Celcius to Kelvin
Convert Celsius degrees to Kelvin temperature.

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Beantwortet
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))=[]

mehr als 11 Jahre vor | 0

| akzeptiert

Gelöst


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

mehr als 11 Jahre vor

Gelöst


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

mehr als 11 Jahre vor

Mehr laden