I tryed to write an Matlab function and convert it into verilog. I get the following error just like the image below. The error appear wherever their are variables, I don't know way! Please how to overcome this error ?? I appreciate your advice !
Mostrar comentarios más antiguos
Respuestas (2)
Tim McBrayer
el 9 de Mayo de 2016
0 votos
HDL Coder requires every variable to be unambiguously typed. Your issues all can be traced back to the function fcm being unsupported and/or undefined. This leaves center and member untyped. The rest just cascade from there.
You should also take a look at the Supported Function list for HDL Coder. You are using multiple functions that aren't supported for HDL code generation, such as greythresh and im2bw. See this MATLAB Answer for more information.
sawan singh
el 23 de Mayo de 2016
0 votos
use coder.extrinsic('rgb2gray','imshow','figure','filter2') where rgb2gray, imshow,figure, filter2 are matlab function used in your m file.
Categorías
Más información sobre HDL Coder en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

