资源描述:
《Writing Fast MATLAB Code》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、PascalGetreuer,February2009ContentsPage1Introduction12TheProler33ArrayPreallocation54JITAcceleration75Vectorization96InliningSimpleFunctions147ReferencingOperations168SolvingAx=b199NumericalIntegration2210SignalProcessing2611Miscellaneous2912FurtherReading311IntroductionMatlabisaprototyp
2、ingenvironment,meaningitfocusesontheeaseofdevelopmentwithlanguage
exibility,interactivedebugging,andotherconvenienceslackinginperformance-orientedlanguageslikeCandFortran.WhileMatlabmaynotbeasfastasC,therearewaystobringitcloser.DisclaimerThisisnotabeginner'stutorialtoMatlab,butatutorialon
3、performance.Themethodsdiscussedherearegenerallyfast,butnoclaimismadeonwhatisfastest.Useatyourownrisk.Beforebeginningourmaintopic,let'sstepbackforamomentandaskourselveswhatwereallywant.Dowewantthefastestpossiblecode?
4、ifso,weshouldswitchtoaperformancelanguagelikeC.Probablymoreaccurately,wew
5、anttospendlesstimetotalfromdeveloping,debugging,running,anduntilnallyobtainingresults.Thissectiongivessometipsonworkingsmart,nothard.M-LintMessagesInmorerecentversionsofMatlab,theintegratededitorautomaticallygivesfeedbackonpossiblecodeerrorsandsuggestedoptimizations.Thesemessagesarehelpf
6、ulinimprovingaprogramandinlearningmoreaboutMatlab.fork=1:NumTrialsr=rand;x(k)=runsim(r);endpxpmightbegrowinginsidealoop.Considerpreallocatingforspeed.hist(x);%PlothistogramofsimulationoutputsHoldthemousecursoroverunderlinedcodetoreadamessage.Or,seeallM-Lintmessagesatonce:::::::::::::::wit
7、hTools!M-Lint!ShowM-LintReport.OrganizationUseaseparatefolderforeachproject.Aseparatefolderforeachprojectkeepsrelatedthingstogetherandsimpliesmakingcopiesandbackupsofprojectles.Writeheadercomments,especiallyH1.TherstlineoftheheadercommentiscalledtheH1comment.Typehelp(cd)togetalistingof
8、allprojectlesandtheirH1comments.1Savefrequentconsolecommandsasascript.Ifyoundyourselfrepeatingcertaincommandsontheconsole,savethemasascript.Lesstypingmeansfeweropportunitiesfortypos.AvoidlosingdataDon'tuseclearallinascript.Thisisanunfortunatecommonpractice
9、anyimpo