I have a knn classification model.i want to simulate the same in simulink

3 vues (au cours des 30 derniers jours)
pavan sunder
pavan sunder le 13 Déc 2016
Commenté : Sean de Wolski le 14 Déc 2016
I have a knn simulation model. I used functions fitcknn and predict in my script...i want to simulate the same in smulink..kindly suggest me which block to be used for fitcknn and predict in simulink

Réponses (1)

Sean de Wolski
Sean de Wolski le 13 Déc 2016
You could use the MATLAB function block to call your KNN model from Simulink.
  2 commentaires
pavan sunder
pavan sunder le 14 Déc 2016
Modifié(e) : pavan sunder le 14 Déc 2016
i tried the same not working. i am unable take the KNN model as input. kindly help me with a more detail explanation..
i wrote the following code in my matlab function block
function y = KNNclass(mdl2,ts)
y=predict(mdl2,ts);
end
the error messagee i received is
Unsupported input format for From Workspace block 'tt/From Workspace'. Available formats are double non-complex matrix, a structure with or without time, or a structure with MATLAB timeseries as leaf nodes. All formats require the data to be finite (not Inf or NaN).
Sean de Wolski
Sean de Wolski le 14 Déc 2016
It shouldn't be in the from workspace block, it should be in a MATLAB function block. Here's how I would set it up. Note that the knn classifier is already trained and stored in a MAT file. You could swap that out to a call to train it if necessary.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Modeling dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by