Masoud
Masoud

Reputation: 305

Math functions in OMNet++

Are there any libraries for math functions accessible from OMNet++ coding environment? I want to compute normal distribution for matrix inputs. This will entail computing exponential, logarithmic, matrix operations (multiply and add).

Is there predefined libraries I could use?

Thanks

Upvotes: 0

Views: 217

Answers (1)

Jerzy D.
Jerzy D.

Reputation: 7002

No, there are no dedicated math libraries in OMNeT++. However, OMNeT++ uses C++, so you can use any of C++ math libraries. For example, you can use IT++ to compute matrix operations in code of your simulation.

Upvotes: 2

Related Questions