user7341333
user7341333

Reputation: 41

Can we convert a matlab built in function to c/c++ code using matlab coder

Can we convert matlab built in function that are present in 5G toolbox to c/c++ code using matlab coder.

Upvotes: 0

Views: 258

Answers (1)

Peeder
Peeder

Reputation: 79

It is shown at the end of the help page of that specific function. Type

>> help yourFunctionName

at the command line. Then scroll to the very bottom and then look at Extended Capabilities > C/C++ Code Generation. When that is present, you should be able to generate code (please unfold to see the details).

If C/C++ Code Generation is not mentioned, you cannot generate code from that function.

Upvotes: 1

Related Questions