文末惊喜,欢迎自取!可直接划至文末!
大奖不要错过哦!
只要在零售店购买了相关产品,肯定是激活的。所以不作过多介绍。
特点:正版、付费、售后服务、永久激活
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 are interpretted. 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 helps reduce memory fragmentation if you work with large matrices.
虽然Matlab会自动调整变量的大小,我们最好还是预先为变量分配内存空间。因为这样可以使调用内存分配命令的次数降为1,也可以使变量在内存中连续存储(当变量为矩阵时是按列在内存中连续存储)。而所谓“预先为变量分配内存空间” ,是指在知道变量的大小的情况下,在变量中的任何一个元素都未被引用之前,创建一个大小和其一致的变量。
关注后回复【软件】免费领取即可!
?文 末 抽 奖?
转发此文章说出你的祝福
揪5个宝走心实用高级感天然&盐石灯
抽选条件:
1-关注本公众号
2-转发本推文至朋友圈,不可仅自己可见,需保留到核对后,不可截图造假。
3-开奖后,请于3个工作日内核对,逾期未兑奖或不符合要求则取消获奖资格。
关注本公众号后回复【抽奖】即可
感谢大家一直以来的阅读、在看和转发,1000T超精美学习资料送给你!请自行领取
英语词汇必背3500考纲词汇表记背神器乱序版 新课标思维导图解巧记速记初高中高频词大全
文章评论