svcpredict
Predicts target values for the test data points using parameters computed by svcFit function.
Syntax
predictions = svcpredict(parameters,X)
Inputs
- parameters
- Output of svcFit function.
- X
- Test data.
Outputs
- predictions
- Predictions for the test data.
Example
Usage of svcpredict
data = dlmread('../../datasets/digits.csv', ',');
X = data(:, 1:end-1);
y = data(:, end);
parameters = svcfit(X, y);
predictions = svcpredict(parameters, X);
predictions = [Matrix] 1 x 2
2.36611 1.87117