热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Matlab调用帮助文件,matlab提速技巧(自matlab帮助文件)

1.首先要学会用profiler分析代码效率.1.1.打开profiler.在我的机器上是:在matlabdesktop下,Desktop-Profi

1.首先要学会用profiler分析代码效率.

1.1. 打开profiler.

在我的机器上是:在matlab desktop下,Desktop->Profiler.

在M文件编辑器下,Tools->Open Profiler.

1.2. 运行profiler

可以把要运行的code拷入Run this code后面的输入框里。

You can run this example

[t,y] = ode23('lotka',[0 2],[20;20])

也可以输入要运行的M文件名。

1.3.Click Start Profiling (or press Enter after entering the statement).

1.4. 查看Profile Detail Report

会告知你哪些代码消耗了多少时间,可以找到哪些函数或那些代码行消耗了主要的时间,或者是经常被调用。

也可以用stopwatch Timer函数,计算程序消耗时间

Use tic and toc as shown here.

tic

- run the program section to be timed -

toc

2、加速方法1——向量化编程

MATLAB programs areinterpretted.This would seem to make it inapproapriate for large scale scientific computing. The power of MATLAB is realized with its extensive set of libraries which are compiled or are carefully coded in MATLAB to utilize "vectorization". The concept of vectorization is central to understanding how to write efficient MATLAB code.

Vectorized code takes advantage, wherever possible, of operations involving data stored as vectors. This even applies to matrices since a MATLAB matrix is stored (by columns) in contiguous locations in the computer's RAM. The speed of a numerical algorithm in MATLAB is very sensitive to whether or not vectorized operations are used.

MATLAB is a matrix language, which means it is designed for vector and matrix operations. You can often speed up your M-file code by using vectorizing algorithms that take advantage of this design. Vectorization means converting for and while loops to equivalent vector or matrix operations.

i = 0;

for t = 0:.01:1000;

i = i+1;

y(i) = sin(t);

end

运行时间为30.776秒。

这段代码是很自然的从C语言的形式转化而来的,但其效率很低!Matlab是实时为变量分配内存的,在第一遍循环时(即i=1时),Matlab为y向量(长度为1)分配内存。以后每执行一次循环,Matlab都会在y的末尾附加新的元素。这不仅导致分配内存的调用的增加,也使得y的各个元素在内存中的分布不是连续的(就像数据结构中数组和链表的区别)。相比之下,下面的代码效率提高不少:

改为向量化代码:

t = 0:.01:1000;

y = sin(t);

运行时间为0秒。

第一个语句分配了一个连续的内存空间来存储具有多个元素的向量t。类似的,第二个语句在分配内存时,也是分配了一个连续的内存空间来存储具有多个元素的向量y。撇去计算sin的消耗不算,就内存分配命令的执行次数和对向量元素访问的方便程度来说,高下立见。

Functions Used in Vectorizing,Some of the most commonly used functions for vectorizing are:all,diff,ipermute,permute,reshape,squeeze,any,find,logical,prod,shiftdim,sub2ind,cumsum,ind2sub,ndgrid,repmat,sort,sum

3、加速方法2——Preallocating Arrays(预分配空间)

You can often improve code execution time by preallocating the arrays that store output results. Preallocation makes it unnecessary for MATLAB to resize an array each time you enlarge it. Use the appropriate preallocation function for the kind of array you are working with.

Preallocation also helpsreduce memory fragmentationif you work with large matrices.

虽然Matlab会自动调整变量的大小,我们最好还是预先为变量分配内存空间。因为这样可以使调用内存分配命令的次数降为1,也可以使变量在内存中连续存储(当变量为矩阵时是按列在内存中连续存储)。而所谓“预先为变量分配内存空间” ,是指在知道变量的大小的情况下,在变量中的任何一个元素都未被引用之前,创建一个大小和其一致的变量。

例如,下面的代码自上而下,运行效率是不断提高的:

1 dx = pi/30;

2 nx =1+2*pi/dx;

3 nx2 = nx/2;

4

5 fori =1:nx2

6 x(i) = (i-1)*dx;

7 y(i) =sin(3*x(i));

8 end

9

10 fori = nx2+1:nx

11 x(i) = (i-1)*dx;

12 y(i) =sin(5*x(i));

13 end

1 dx = pi/30;

2 nx =1+2*pi/dx;

3 nx2 = nx/2;

4

5x = zeros(1,nx);      %为向量x预分配内存

6y = zeros(1,nx);      %为向量y预分配内存

7

8 fori =1:nx2

9 x(i) = (i-1)*dx;

10 y(i) =sin(3*x(i));

11 end

12

13 fori = nx2+1:nx

14 x(i) = (i-1)*dx;

15 y(i) =sin(5*x(i));

16 end

1x =0:pi/30:2*pi;     %计算向量x的值

2 nx = length(x);

3 nx2 = nx/2;

4

5y = x;                %为向量y预分配内存

6

7 fori =1:nx2

8 y(i) =sin(3*x(i));

9 end

10

11 fori = nx2+1:nx

12 y(i) =sin(5*x(i));

13 end

1x =0:pi/30:2*pi;                  %计算向量x的值

2 nx = length(x);

3 nx2 = nx/2;

4

5y = x;                             %为向量y预分配内存

6

7y(1:nx2) =sin(3*x(1:nx2));        %计算y的第1部分的值

8y(nx2+1:nx) =sin(5*x(nx2+1:nx));  %计算y的第2部分的值

4、加速其他方法:

Coding Loops in a MEX-File for Speed

If there are instances where you must use a for loop, consider coding the loop in a MEX-file. In this way, the loop executes much more quickly since the instructions in the loop do not have to be interpreted each time they execute.

Functions Are Faster Than Scripts

Your code will execute more quickly if it is implemented in a function rather than a script. Every time a script is used in MATLAB, it is loaded into memory and uated one line at a time. Functions, on the other hand, are compiled into pseudo-code and loaded into memory once. Therefore, additional calls to the function are faster.

Load and Save Are Faster Than File I/O Functions

If you have a choice of whether to use load and save instead of the MATLAB file I/O routines, choose the former. The load and save functions are optimized to run faster and reduce memory fragmentation.

Avoid Large Background Processes

Avoid running large processes in the background at the same time you are executing your program in MATLAB. This frees more CPU time for your MATLAB session.

5.多线程

在matlab desktop里,File->Preferences->General->Multithreading, 看是否选择了Enable Multithreaded Computation。

如果没选,check it, 看是否有提速。



推荐阅读
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 本文深入探讨了 Java 中的 Serializable 接口,解释了其实现机制、用途及注意事项,帮助开发者更好地理解和使用序列化功能。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • ImmutableX Poised to Pioneer Web3 Gaming Revolution
    ImmutableX is set to spearhead the evolution of Web3 gaming, with its innovative technologies and strategic partnerships driving significant advancements in the industry. ... [详细]
  • 本教程涵盖OpenGL基础操作及直线光栅化技术,包括点的绘制、简单图形绘制、直线绘制以及DDA和中点画线算法。通过逐步实践,帮助读者掌握OpenGL的基本使用方法。 ... [详细]
  • 本文详细介绍了如何规划和部署一个高可用的Etcd集群,包括主机配置、软件安装、防火墙设置及集群健康检查等内容。通过合理的硬件配置和网络规划,确保Etcd集群在生产环境中的稳定运行。 ... [详细]
  • 采用IKE方式建立IPsec安全隧道
    一、【组网和实验环境】按如上的接口ip先作配置,再作ipsec的相关配置,配置文本见文章最后本文实验采用的交换机是H3C模拟器,下载地址如 ... [详细]
  • 本文详细介绍了虚拟专用网(Virtual Private Network, VPN)的概念及其通过公共网络(如互联网)构建临时且安全连接的技术特点。文章探讨了不同类型的隧道协议,包括第二层和第三层隧道协议,并提供了针对IPSec、GRE以及MPLS VPN的具体配置指导。 ... [详细]
  • DNN Community 和 Professional 版本的主要差异
    本文详细解析了 DotNetNuke (DNN) 的两种主要版本:Community 和 Professional。通过对比两者的功能和附加组件,帮助用户选择最适合其需求的版本。 ... [详细]
  • 本文详细解析了Python中的os和sys模块,介绍了它们的功能、常用方法及其在实际编程中的应用。 ... [详细]
  • 本文详细介绍了macOS系统的核心组件,包括如何管理其安全特性——系统完整性保护(SIP),并探讨了不同版本的更新亮点。对于使用macOS系统的用户来说,了解这些信息有助于更好地管理和优化系统性能。 ... [详细]
  • 在现代网络环境中,两台计算机之间的文件传输需求日益增长。传统的FTP和SSH方式虽然有效,但其配置复杂、步骤繁琐,难以满足快速且安全的传输需求。本文将介绍一种基于Go语言开发的新一代文件传输工具——Croc,它不仅简化了操作流程,还提供了强大的加密和跨平台支持。 ... [详细]
  • 高效解决应用崩溃问题!友盟新版错误分析工具全面升级
    友盟推出的最新版错误分析工具,专为移动开发者设计,提供强大的Crash收集与分析功能。该工具能够实时监控App运行状态,快速发现并修复错误,显著提升应用的稳定性和用户体验。 ... [详细]
  • 如何使用PyCharm及常用配置详解
    对于一枚pycharm工具的使用新手,正确了解这门工具的配置及其使用,在使用过程中遇到的很多问题也可以迎刃而解,文中有非常详细的介绍, ... [详细]
  • Python处理Word文档的高效技巧
    本文详细介绍了如何使用Python处理Word文档,涵盖从基础操作到高级功能的各种技巧。我们将探讨如何生成文档、定义样式、提取表格数据以及处理超链接和图片等内容。 ... [详细]
author-avatar
mobiledu2502873827
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有