How to stop a sub function after certain time from main function ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to stop a sub function of my main function after a certain time and want to get the other sub function result at the same time ,How to do it ?
2 Kommentare
Geoff Hayes
am 11 Mai 2022
@Akash Pal please clarify with a small example what you wish to happen. Is your main function calling another function which you wish to "cancel" after a certain period of time (if it hasn't completed)? If so, please describe the scenario as to why you would want to do this.
Antworten (1)
Walter Roberson
am 11 Mai 2022
If you use parfeval() then you can cancel() the future.
However when you cancel a future you do not have access to its workspace. You cannot use this method to get "best results so far" from the worker.
If you create Parallel Data Queues then you can use them to send requests some kinds of workers. But this approach requires cooperation with the worker.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!