ios198
ios198

Reputation: 37

imfilter function with Matlab Coder?

When I used imfilter() function with Matlab coder , it appears error

 Expected input number 1, A to be one of theses types: nummeric,logical. Instead its type was embedded.fi

How can I fix this problems?

Upvotes: 0

Views: 261

Answers (1)

giosans
giosans

Reputation: 1178

The problem is in matrix A (Showing its class attributes or how you create it would certainly help). A is a fi - fixed numeric object (read about embedded.fi class), which you can transform to numeric, logical using its Data properties.

Hope this is helpful.

Upvotes: 2

Related Questions