generate a unique ID

109 vues (au cours des 30 derniers jours)
Aziza Zaouga
Aziza Zaouga le 15 Oct 2018
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.

Réponses (2)

GT
GT le 20 Nov 2018
This has already been asked:
temp = java.util.UUID.randomUUID;
myuuid = temp.toString;
disp(myuuid)

Andrei Veldman
Andrei Veldman le 19 Jan 2022
Modifié(e) : Andrei Veldman le 19 Jan 2022
...or, using pure Matlab:
[~,guid] = fileparts(tempname)
guid = 'tp36f88b8b_87c7_4f81_9bb4_81cd95f8a15d'

Catégories

En savoir plus sur Function Creation dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by