フィルターのクリア

is it o.k if 'tic' is in one function and 'toc' is in another?

4 ビュー (過去 30 日間)
alex
alex 2012 年 10 月 15 日
is it o.k if 'tic' is in one function and 'toc' is in another? I am working with a gui and I want to set tic in one place and toc in a different function, possible?

採用された回答

Matt Fig
Matt Fig 2012 年 10 月 15 日
編集済み: Matt Fig 2012 年 10 月 15 日
Yes, tic is global. Here is an example I made to test....
Example. 1st M-file:
function [] = calltic()
tic;
Second, separate M-file:
function [T] = calltoc()
T = toc;
From the command line:
>> calltic,calltoc
ans =
1.1999e-004
>> calltic,pause(.998),calltoc
ans =
1.0001

その他の回答 (1 件)

Image Analyst
Image Analyst 2012 年 10 月 15 日
Wouldn't it be easy enough to try? Then you'd find out, probably quicker than asking here.
  2 件のコメント
Matt Fig
Matt Fig 2012 年 10 月 15 日
My first thought....
alex
alex 2012 年 10 月 15 日
all I'm asking here is after playing with those things myself.. the problem is that I keep on heving an error while running that says-
Error using toc
You must call TIC without an output argument before calling TOC without an
input argument.
Error in hand_rotation2/youPress (line 126)
c = toc;
Error while evaluating figure KeyPressFcn
so I thougth it could somehow be because of it..

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

カテゴリ

Help Center および File ExchangeDebugging and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by