For example:
model = svmTrain(X, y, C, @(x1, x2) gaussianKernel(x1, x2, sigma));
Disclaimer: This is from the Coursera ML class, but it\'s nea
Also, @ is used to demark a function handle.
@
@ prefixes the definition of an anonymous function.