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

9년 초과 전 | 0

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

9년 초과 전 | 0

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

9년 초과 전 | 0

답변 있음
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);

9년 초과 전 | 0

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


Celcius to Kelvin
Convert Celsius degrees to Kelvin temperature.

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

답변 있음
Type of Medical Image for PCA and LDA Feature Extraction
i have worked with MRI.

9년 초과 전 | 0

답변 있음
feature extraction using local binary pattern
you will get a binary pattern like 10100011 .wich will be unique for every image.

9년 초과 전 | 0

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

9년 초과 전 | 0

| 수락됨

답변 있음
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...

9년 초과 전 | 0

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

9년 초과 전 | 0

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

9년 초과 전 | 0

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

답변 있음
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))=[]

9년 초과 전 | 0

| 수락됨

문제를 풀었습니다


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

9년 초과 전

문제를 풀었습니다


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

9년 초과 전

더 보기