Hi , explain MCODE & PERSISTENT rules for the program which uses FOR LOOP?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
run moves
am 17 Apr. 2014
Bearbeitet: run moves
am 22 Apr. 2014
Hi every one, I implemented matlab code for adaptive recursive least square filter and got the results for .m file . As I have to use my code in mcode it shows errors for ‘/ ‘(division) symbol in for loop without division my algorithm cant implement our algorithm. I referred about mcode rules but it wasn`t clearly explained about persistent, division symbol. If anyone from matlab support domain justify our problem for implementation we can clearly understood what is real problem. Thank you in advance.
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 17 Apr. 2014
Do you need "/", or do you need "./" instead? "/" is not division, it is matrix division, which can be a form of fitting (depending on the rank of the matrices involved.) It would be a rather expensive operation to implement in HDL, especially if you needed full floating point.
If you need division, the "./" operator, then the cost of implementing that is going to depend upon the data types involved. You should be considering using the Fixed Point Toolbox.
1 Kommentar
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!