NEED HELP URGENTLY WITH COMPILE RUN ERROR
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Sheldon Nyce
il 24 Ott 2019
Commentato: Sheldon Nyce
il 28 Ott 2019
Hi guys.
Why does this code not want to generate the function? The neural net runs perfectly, but I need to generate a MatrixOnly function for the C coder, and it wont compile? Any ideas? TIA
6 Commenti
Adam
il 24 Ott 2019
All questions are urgent to the people asking them. People answering them will often ignore those who use capital letters and words like 'urgent' though. So if you want a fast answer you would do far better not to use them.
Risposta accettata
Steven Lord
il 24 Ott 2019
Modificato: Steven Lord
il 24 Ott 2019
Looking at your genFunction call:
genFunction(net,'C:\Users\27714\Desktop\Neural Network training\myNetwork.m', ...
'MatrixOnly');
the help text lists the following syntax:
genFunction(...,'MatrixOnly','yes')
Try adding in the 'yes' at the end of the call.
genFunction(net,'C:\Users\27714\Desktop\Neural Network training\myNetwork.m', ...
'MatrixOnly', 'yes');
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!