MATLAB上で時間のかかるシミュレーションが終ったら通知して欲しい
動機
パラメータを学習させたい!!!けど時間かかる!
いつまでも画面を見ているわけには行かないけど,計算が終わったらすぐ結果を知りたい.
そう,そんな時は終わり次第メールで通知すればいい.
ソース
https://jp.mathworks.com/matlabcentral/answers/93383-how-do-i-use-sendmail-to-send-email-from-matlab-7-2-r2006a-via-the-gmail-server-or-yahoo-server
http://blog.livedoor.jp/itukano/archives/51833649.html
コード
% Modify these two lines to reflect
% your account and password.
email = '[email protected]'; %変更するのは
password = 'password'; %この2行
setpref('Internet','E_mail',email);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',email);
setpref('Internet','SMTP_Password',password);
props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth','true');
props.setProperty('mail.smtp.socketFactory.class', ...
'javax.net.ssl.SSLSocketFactory');
props.setProperty('mail.smtp.socketFactory.port','465');
%ここで sendmail を使ってテストメールを送っている
%ここに設定するアドレスは gmail のものではなくて大丈夫。
%自分の gmail 経由で目的のアドレスにメールが送られてきます
sendmail(email, 'Gmail Test', 'This is a test message.');
% Modify these two lines to reflect
% your account and password.
email = '[email protected]'; %変更するのは
password = 'password'; %この2行
setpref('Internet','E_mail',email);
setpref('Internet','SMTP_Server','smtp.gmail.com');
setpref('Internet','SMTP_Username',email);
setpref('Internet','SMTP_Password',password);
props = java.lang.System.getProperties;
props.setProperty('mail.smtp.auth','true');
props.setProperty('mail.smtp.socketFactory.class', ...
'javax.net.ssl.SSLSocketFactory');
props.setProperty('mail.smtp.socketFactory.port','465');
%ここで sendmail を使ってテストメールを送っている
%ここに設定するアドレスは gmail のものではなくて大丈夫。
%自分の gmail 経由で目的のアドレスにメールが送られてきます
sendmail(email, 'Gmail Test', 'This is a test message.');
Author And Source
この問題について(MATLAB上で時間のかかるシミュレーションが終ったら通知して欲しい), 我々は、より多くの情報をここで見つけました https://qiita.com/watakandai/items/7e06df1a03fe4c494962著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .