photo

Nirmal


2011년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

14 질문
29 답변

File Exchange

1 파일

Cody

0 문제
40 답안

순위
1,397
of 300,763

평판
52

참여
14 질문
29 답변

답변 채택
64.29%

획득한 표
6

순위
10,623 of 21,082

평판
54

평균 평점
0.00

참여
1 파일

다운로드 수
2

ALL TIME 다운로드 수
549

순위
14,158
of 170,923

참여
0 문제
40 답안

점수
410

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 3
  • First Review
  • First Submission
  • 3 Month Streak
  • Thankful Level 3
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

질문


Canonical Correlation Analysis - canoncorr function in matlab
I am just starting with CCA, I am trying to explore it using the matlab function, but I guess I am stuck understand the result I...

거의 13년 전 | 답변 수: 1 | 0

1

답변

질문


Understanding output of perfcurve
[X,Y,T,AUC2,OPTROCPT] = perfcurve(classtest,classpredict,2); My classtest as well as classpredict are 460*1, but when i run ...

대략 13년 전 | 답변 수: 1 | 0

1

답변

질문


SVM Error - The first input should be a struct generated by SVMTRAIN
I am getting error using following code with SVM SVMStruct1 = svmtrain(data,class,'kernel_function','linear'); class12=...

대략 13년 전 | 답변 수: 0 | 0

0

답변

문제를 풀었습니다


Is my wife right? Now with even more wrong husband
Again, as in "Is my wife right?" ( <http://www.mathworks.com/matlabcentral/cody/problems/149-is-my-wife-right> ), answer 'yes' r...

13년 초과 전

답변 있음
What do all these errors mean and is there anything that I can do to prevent/fix this
http://www.mathworks.com/help/matlab/matlab_prog/resolving-out-of-memory-errors.html This might help!

13년 초과 전 | 0

| 수락됨

답변 있음
Error using ==> mtimes Inner matrix dimensions must agree.
pts3 = H*[pts1;ones(1,n)]; if you check the size of H and size of [pts1;ones(1,n)], the no. of columns of H and no. o...

13년 초과 전 | 0

문제를 풀었습니다


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

13년 초과 전

문제를 풀었습니다


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

13년 초과 전

문제를 풀었습니다


inner product of two vectors
inner product of two vectors

13년 초과 전

답변 있음
getting rid of a loop
b=[V(:,4) V(:,5) V(:,10) V(:,18)] b will be what you want.

13년 초과 전 | 0

질문


ROC curve for Decision Tree
I am getting ROC curve for decision tree but I am a bit taken away by the curve. Its similar to the curve, http://ard.bmj.com...

13년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
Entering a formula by user
Have a look at eval: http://www.mathworks.com/help/techdoc/ref/eval.html aMatrix = magic(5); expression = input('Ent...

13년 초과 전 | 0

| 수락됨

답변 있음
Subscript indices must either be real positive integers or logicals; Perimeter issue
plot(x,y((i-1)*5000:i*5000),'g') when i=1, you are indexing y from 0:5000, matlab doesnt have 0 index.

13년 초과 전 | 1

| 수락됨

문제를 풀었습니다


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

13년 초과 전

답변 있음
Why do I get this response 'Operands to the || and && operators must be convertible to logical scalar values.'?
G=str2num(Grade); G will be a string so you need to convert that to a number using the str2num function. Its better to use...

13년 초과 전 | 0

| 수락됨

답변 있음
rows which do not contain zero
count=sum(sum(D==0,2)==0) count will be the number of rows which are not all zeros in matrix D.

13년 초과 전 | 0

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

답변 있음
Initialization of array of structure
You shouldnt do LD=[], instead you should change the field of each of the structure in the array.

13년 초과 전 | 0

답변 있음
a simple question about for loop
First of all its loop not loob. I hope you meant range as a variable. the following code should work. for a = (1:10) ...

13년 초과 전 | 0

문제를 풀었습니다


Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...

13년 초과 전

문제를 풀었습니다


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

13년 초과 전

문제를 풀었습니다


Implement a ROT13 cipher
Replace each character in string s1 with the character that is shifted 13 positions from it (wrap back to the beginning if neces...

13년 초과 전

문제를 풀었습니다


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

13년 초과 전

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

13년 초과 전

제출됨


Customized K-Means
Customized K-means where you can choose different initial cluster centroid.

13년 초과 전 | 다운로드 수: 2 |

0.0 / 5

문제를 풀었습니다


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

13년 초과 전

문제를 풀었습니다


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

13년 초과 전

문제를 풀었습니다


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

13년 초과 전

더 보기