user2040072
user2040072

Reputation: 15

Undefined arguments(Image Processing)

I am having a little problem here. In the code below is a function that has two arguments when I attempt to execute the functions i obtained this error

 Undefined function or method  for input
arguments of type 'double' (X,CX) as shown in (1).

the function is coded as below

[CX,sse]= (vgg_kmiter(X, CX)) ....(1)

can someone point me out where is the problem with this code?

note that the x is the input points in a columns which is integer and the CX is the center of clustering which is also integer.

Thank you

Upvotes: 1

Views: 347

Answers (1)

Jonas
Jonas

Reputation: 74940

[CX,sse]= (vgg_kmiter(X, CX)) ....(1)

Is not a valid line of code.

[CX,sse]= (vgg_kmiter(X, CX));

is fine, though the outer parentheses aren't needed.

[CX,sse]= (vgg_kmiter(X, CX)) %....(1)

is fine as well - everything after the % sign is considered a comment

Upvotes: 1

Related Questions