フィルターのクリア

I have a question about time. Suppose the start time of a movie is 12:35 and the duration of the movie is 125 minutes. Is there any function in MATLAB that shows the finish time of the movie? Thanks

1 回表示 (過去 30 日間)
I have a question about time. Suppose the start time of a movie is 12:35 and the duration of the movie is 125 minutes. Is there any function in MATLAB that shows the finish time of the movie? Thanks

採用された回答

Star Strider
Star Strider 2015 年 5 月 1 日
If you have R2014b or later, use the duration function:
H = 12;
MI = 35+[0:125];
S = 0;
D = duration(H,MI,S);
MovieStart = D(1)
MovieFinish = D(end)
produces:
MovieStart =
12:35:00
MovieFinish =
14:40:00
  8 件のコメント
yashar khatib shahidi
yashar khatib shahidi 2015 年 5 月 2 日
Sorry I tried the code but it gives error. What is B = A*A' for? Thanks
Star Strider
Star Strider 2015 年 5 月 2 日
It’s been a while since i used persistent variables.
This works:
function [B,y] = myfun(A)
persistent x
x = size(A)
B = A*A';
y = x;
end
The call to it is the same.
The
B = A*A';
is just to give it something to do.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMovie についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by