程序运行时间c++/matlab
时间: 2023-10-16 14:18:03 浏览: 176
在 C++ 中,可以使用 clock() 函数来计算程序运行时间。
示例代码:
```c++
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
clock_t start, end;
double cpu_time_used;
start = clock();
// 程序代码
end = clock();
cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC;
cout << "程序运行时间为 " << cpu_time_used << " 秒。" << endl;
return 0;
}
```
在 MATLAB 中,可以使用 tic 和 toc 函数来计算程序运行时间。
示例代码:
```matlab
tic
% 程序代码
toc
```
以上代码将会在 MATLAB 命令窗口中输出程序运行时间。
阅读全文