Notifier

Notify you via email or text message when your functions finish or crash.
1,5K téléchargements
Mise à jour 16 sept. 2010

Afficher la licence

Note de l’éditeur : This file was selected as MATLAB Central Pick of the Week

notifier - Notifies you via email when a function finishes.

USAGE:
varargout = notifier(recipients, fh, varargin)

notifier is a wrapper for a sub function. It takes as input a list of recipients, a function handle, and arguments for the sub function. It then calls the sub function, passing in all the arguments, and notifies the recipients via email when the sub function completes. In the event of an error, the text of the error message is sent to the recipients via email. This is designed for long running functions, so you can leave the computer and be notified when to come back. This function uses sendmail to send notices, so make sure that sendmail is working properly before attempting to use this function. Sendmail accepts email addreses, but if your phone/carrier supports this feature, you can often use specially fomatted email addresses to send TXT messages to your mobile phone. For example, for Verizon Wireless, you can use the email address <phonenumber>vtext.com, such as 6175551212@vtext.com.

INPUT:
recipients - E-mail addresses to notify. Passed directly to sendmail,
so see the documentation for sendmail for formatting.
fh - Function handle for the sub function to run.
varargin - Input arguments passed directly to the sub function.

OUTPUT:
varargout - Output from the sub funtion is passed directly as output
from this function.

EXAMPLE:
Without notifier:
output = myfunc(arg1, arg2)
With notifier:
output = notifier('email@address.com', @myfunc, arg1, arg2)

Citation pour cette source

Benjamin Kraus (2026). Notifier (https://fr.mathworks.com/matlabcentral/fileexchange/28733-notifier), MATLAB Central File Exchange. Extrait(e) le .

Compatibilité avec les versions de MATLAB
Créé avec R2010a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur MATLAB Mobile dans Help Center et MATLAB Answers
Version Publié le Notes de version
1.0.0.0