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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

Resuelto


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

alrededor de 11 años hace

Resuelto


Celcius to Kelvin
Convert Celsius degrees to Kelvin temperature.

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

| aceptada

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

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

alrededor de 11 años hace | 0

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

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

alrededor de 11 años hace | 0

| aceptada

Resuelto


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

alrededor de 11 años hace

Resuelto


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

alrededor de 11 años hace

Cargar más