我已经使用Cmdenv
. 通常我使用 OMNET++ IDE 来运行仿真,并会在 IDE 中分析结果。但是现在结果在服务器上,有没有更简单(方便)的方法来分析结果而不将其导入 OMNET++ IDE?
问问题
1743 次
3 回答
2
最好的解决方案是使用 omnetpp 包编写一个 R 脚本,这是我目前正在做的,出于同样的目的。
在您的服务器下,您可以安装 R,然后使用 Rscript 命令运行脚本
于 2016-01-21T10:56:36.510 回答
0
There is an excellent tutorial on how to analyze and plot OMNeT++ results using Python: https://docs.omnetpp.org/tutorials/pandas/
Essentially:
- Create a CSV file out of the OMNeT++ result files:
scavetool x *.vec -o measurements.csv
- Read the CSV files with pandas:
results = pd.read_csv('measurements.csv')
- Filter, edit, and plot the data using
pandas
,numpy
, andmatplotlib
as usual
于 2018-08-03T08:53:39.920 回答