generate a unique ID
88 ビュー (過去 30 日間)
古いコメントを表示
Hello everyone,
I have a function to generate packets (randomly) , and I want to affect to every generated packet a unique ID (an integer for example).
How can I do this in the simplest way ? Because I don't want to complicate more my simulator.
Thanks in advance.
0 件のコメント
回答 (2 件)
Gareth
2018 年 11 月 20 日
This has already been asked:
temp = java.util.UUID.randomUUID;
myuuid = temp.toString;
disp(myuuid)
0 件のコメント
Andrei Veldman
2022 年 1 月 19 日
編集済み: Andrei Veldman
2022 年 1 月 19 日
...or, using pure Matlab:
[~,guid] = fileparts(tempname)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!