版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領
文檔簡介
變換規(guī)則和定義第一頁,共十八頁,2022年,8月28日2November18,2004StartLearningStepbyStep1.應用變換規(guī)則expr/.rules 在表達式上應用一次規(guī)則expr//.rules 在表達式上重復應用規(guī)則直道結果不再改變應用變換規(guī)則expr/.lhs->rhs 在表達式上應用某個變換規(guī)則expr/.{lhs1->rhs1,lhs2->rhs,...} 在表達式上依次應用一系列規(guī)則應用一組變換規(guī)則expr/.{rules1,rules2,...} 應用一組規(guī)則得到一個數組一次或重復應用規(guī)則第二頁,共十八頁,2022年,8月28日3November18,2004StartLearningStepbyStep1.應用變換規(guī)則(續(xù))Applyingrulestowholeexpressionsexpr/.rules applyrulestoallsubpartsofexprReplace[expr,rules] applyrulestothewholeofexpronlyReplace[expr,rules,levspec] applyrulestopartsofexpronlevelsspecifiedbylevspecApplyingrulesinonewayorallpossiblewaysReplace[expr,rules] applyrulesinonewayonlyReplaceList[expr,rules] applyrulesinallpossibleways第三頁,共十八頁,2022年,8月28日4November18,2004StartLearningStepbyStep2.對規(guī)則的操作CreatingandusingdispatchtablesDispatch[rules] createarepresentationofalistofrulesthatincludesdispatchtablesexpr/.drules applyrulesthatincludedispatchtables第四頁,共十八頁,2022年,8月28日5November18,2004StartLearningStepbyStep3.定義Manualandautomaticapplicationoftransformationrulesexpr/.lhs->rhs applyatransformationruletoaspecificexpressionlhs=rhs assignavaluewhichdefinesatransformationruletobeusedwheneverpossibleRemovingassignmentsx=. removethevalueassignedtotheobjectxClear[x,y,...] clearallthevaluesofx,y,...第五頁,共十八頁,2022年,8月28日6November18,2004StartLearningStepbyStep4.賦值的一些特殊形式Modifyingvaluesofvariablesi++ incrementthevalueofiby1i-- decrementi++i pre-incrementi--i pre-decrementii+=di addditothevalueofii-=di subtractdifromix*=c multiplyxbycx/=c dividexbyc第六頁,共十八頁,2022年,8月28日7November18,2004StartLearningStepbyStep4.賦值的一些特殊形式(續(xù))Assigningvaluestoseveralvariablesatatimex=y=value assignthesamevaluetobothxandy{x,y}={value1,value2} assigndifferentvaluestoxandy{x,y}={y,x} interchangethevaluesofxandyAssignmentsformodifyinglistsPrependTo[v,elem] prependelemtothevalueofvAppendTo[v,elem] appendelemv={v,elem} makeanestedlistcontaningelem第七頁,共十八頁,2022年,8月28日8November18,2004StartLearningStepbyStep5.索引的定義Manipulatingindexedvariablesa[i]=value addoroverwriteavaluea[i] accessavaluea[i]=. removeavalue?a showalldefinedvaluesClear[a] clearalldefinedvaluesTable[a[i],{i,1,n}]orArray[a,n] converttoanexplicitList第八頁,共十八頁,2022年,8月28日9November18,2004StartLearningStepbyStep6.函數的定義f[x]=value definitionforaspecificexpressionxf[x_]=value definitionforanyexpression,referredtoasxThedifferencebetween
defininganindexedvariableandafunction第九頁,共十八頁,2022年,8月28日10November18,2004StartLearningStepbyStep7.定義的次序TreatmentofdefinitionsinMathematicaMathematicatriestoputspecificdefinitionsbeforemoregeneraldefinitions第十頁,共十八頁,2022年,8月28日11November18,2004StartLearningStepbyStep8.即時和延時的定義lhs=rhs(immediateassignment) rhsisevaluatedwhentheassignmentismadelhs:=rhs(delayedassignment) rhsisevaluatedeachtimethevalueoflhsisrequestedThetwotypesofassignmentsinMathematicaInterpretationsofassignmentswiththe=and:=operatorslhs=rhs rhsisintendedtobethe"finalvalue"oflhs(e.g.,f[x_]=1-x^2)lhs:=rhs rhsgivesa"command"or"program"tobeexecutedwheneveryouaskforthevalueoflhs(e.g.,f[x_]:=Expand[1-x^2])Definingfunctionsforevaluatingexpressionsf[x_]=expr defineafunctionwhichgivesthevalueexprforanyparticularvalueofx第十一頁,共十八頁,2022年,8月28日12November18,2004StartLearningStepbyStep8.即時和延時的定義(續(xù))lhs->rhs rhsisevaluatedwhentheruleisgivenlhs:>rhs rhsisevaluatedwhentheruleisusedTwotypesoftransformationrulesinMathematica第十二頁,共十八頁,2022年,8月28日13November18,2004StartLearningStepbyStep9.記住已知值的函數f[x_]:=f[x]=rhs defineafunctionwhichremembersvaluesthatitfindsDefiningafunctionthatremembersvaluesitfinds第十三頁,共十八頁,2022年,8月28日14November18,2004StartLearningStepbyStep10.定義聯(lián)系不同的符號Associatingdefinitionswithdifferentsymbolsf[args]:=rhs defineadownvalueforff[g[args],...]^:=rhs defineanupvalueforgShorterwaystodefineupvaluesf[g]^=valueorf[g[args]]^=value makeassignmentstobeassociatedwithg,ratherthanff[g]^:=valueorf[g[args]]^:=value makedelayedassignmentsassociatedwithgf[arg1,arg2,...]^=value makeassignmentsassociatedwiththeheadsofalltheargi第十四頁,共十八頁,2022年,8月28日15November18,2004StartLearningStepbyStep10.定義聯(lián)系不同的符號(續(xù))Possiblepositionsforsymbolsindefinitionsf[...]:=rhs downvalueforff/:f[g[...]][...]:=rhs downvalueforfg/:f[...,g,...]:=rhs upvalueforgg/:f[...,g[...],...]:=rhs upvalueforg第十五頁,共十八頁,2022年,8月28日16November18,2004StartLearningStepbyStep11.定義數值值Definingordinaryandnumericalvaluesexpr=value defineavaluetobeusedwheneverpossibleN[expr]=value defineavaluetobeusedfornumericalapproximationDefiningnumericalvalues
thatdependonnumericalprecisionN[expr]=value defineanumericalvaluetobeusedwhendefalutnumericalprecisionisrequestedN[expr,n]=value defineanumericalvaluetobeusedwhenn-digitprecisionisrequested第十六頁,共十八頁,2022年,8月28日17November18,2004StartLearningStepbyStep12.修改內置函數ProtectionforfunctionsUnprotect[f] removeprotectionProtect[f] addprotection第十七頁,共十八頁,2022年,8月28日18N
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經權益所有人同意不得將文件中的內容挪作商業(yè)或盈利用途。
- 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
- 6. 下載文件中如有侵權或不適當內容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 共享服務合同的創(chuàng)新發(fā)展趨勢展望
- 江蘇省江陰市璜土中學高中地理 4.1區(qū)域農業(yè)發(fā)展-以我國東北地區(qū)為例教案2 新人教版必修3
- 2024-2025學年高中語文 第四單元 有無相生教案6 新人教版選修《先秦諸子選讀》
- 九年級化學下冊 第12單元 化學與生活教案 (新版)新人教版
- 2024-2025學年高中歷史下學期第13周 羅斯福新政教學設計
- 2024六年級語文下冊 第六單元 古詩詞誦讀 5 江上漁者教學設計+教案+素材 新人教版
- 2024-2025學年上海市浦東新區(qū)七年級上英語期中試卷(含答案和音頻)
- 雨花石音樂課件
- 發(fā)現規(guī)律 課件
- 剖宮產手術課件
- 專病數據模塊及數據庫建設需求
- 一老一小交通安全宣傳
- 城市社區(qū)居家養(yǎng)老服務體系建設研究-以我國椒江區(qū)、田家庵區(qū)為例的開題報告
- 重點部位感染與預防控制
- 高校快遞包裝回收現狀分析及對策-以廣東省中山市三大高校為例
- 初創(chuàng)企業(yè)財務管理計劃書
- 新民事訴訟書范文追債通用21篇
- 100ml生理鹽水的配制講解
- 國家開放大學《Python語言基礎》實驗3:超市數據統(tǒng)計分析參考答案
- 加油站消防安全基本常識
- 熱力集團招聘試題
評論
0/150
提交評論