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!