一些Julia 0.4版中有,被高版本廢棄的功能
1.判斷是否質數、生成質數
julia> isprime(12) false julia> primes(12) 5-element Array{Int32,1}: 2 3 5 7 11
2.排列組合
permutations和combinations函式返回的是迭代器,要用collect 或自己編寫程式碼顯示內容。
julia> permutations([1 2 3]) Base.Permutations{Array{Int32,2}}(1x3 Array{Int32,2}: 1 2 3) julia> permutations(3) Base.Permutations{Int32}(3) julia> collect(permutations([1,2,3])) 6-element Array{Array{Int32,1},1}: [1,2,3] [1,3,2] [2,1,3] [2,3,1] [3,1,2] [3,2,1] julia> collect(combinations([1,2,3],2)) 3-element Array{Array{Int32,1},1}: [1,2] [1,3] [2,3] julia> it1= permutations([1,2,3]); julia> for i in it1 println(i) end [1,2,3] [1,3,2] [2,1,3] [2,3,1] [3,1,2] [3,2,1]
3.把字串字面量轉化為整數
julia> BigInt("23472387523575783957397395637896") WARNING: BigInt(s::AbstractString) is deprecated, use parse(BigInt,s) instead. in depwarn at deprecated.jl:73 while loading no file, in expression starting on line 0 23472387523575783957397395637896
要在高版本中用這些功能,有些只要包含相應的jl檔案,有些還不行。
julia>include("D:\\Julia-0.4.7\\share\\julia\\base\\primes.jl") julia> primes(12) 5-element Array{Int32,1}: 2 3 5 7 11 julia> isprime(12) false julia> include("D:\\Julia-0.4.7\\share\\julia\\base\\combinatorics.jl") parity (generic function with 1 method) julia> collect(permutations([1,2,3])) ERROR: MethodError: no method matching length(::Permutations{Array{Int32,1}}) julia> permutations([1,2,3]) Permutations{Array{Int32,1}}([1, 2, 3]) julia> it1= permutations([1,2,3]); julia> for i in it1 println(i) end ERROR: MethodError: no method matching start(::Permutations{Array{Int32,1}})
相關文章
- PHP7.4 新特性和廢棄的功能PHP
- kotlin-android-extensions外掛也被廢棄了KotlinAndroid
- Node.js 最早 npm 包 request 將被廢棄Node.jsNPM
- 別亂用了,用新的。Go SliceHeader 和 StringHeader 將會被廢棄!GoHeader
- MySQL 8.0.20 安裝新特性以及一些廢棄引數MySql
- getOriginal()被廢棄?改為:getRawOriginal()新手剛遇到,提醒和我一樣的新手!!
- Vue 插槽 廢棄語法Vue
- Nacos的一些高階功能
- 被廣泛使用的OAuth2.0的密碼模式已經廢了,放棄吧OAuth密碼模式
- 《學習筆記》被廢棄的Kotlin Android Extensions外掛替代品 View Binding筆記KotlinAndroidView
- go操作redis(已經廢棄)GoRedis
- Android startActivityForResult()廢棄了,代替方案案例Android
- ”被棄者“
- Vue高版本中一些新特性的使用Vue
- ABAP Code Inspector 的一些高階功能分享
- chrome + vi 純手工模式, 廢棄滑鼠。Chrome模式
- IDEA刪除已經廢棄不用的jdk選項IdeaJDK
- 被遺棄的執行緒執行緒
- php5.5CURL圖片上傳廢棄@PHP
- 被時代拋棄的危機感
- 舊郵箱廢棄,GitHub 無法解綁帳號Github
- WinWorld:大型的廢棄作業系統、軟體、遊戲的博物館作業系統遊戲
- Synopsys:91%的商業App包含過時或廢棄開源元件APP元件
- 別讓自己成為一名廢棄的程式設計師程式設計師
- 廢品回收系統如何規劃功能的?
- K8s 終將廢棄 docker,TKE 早已支援 containerdK8SDockerAI
- ViewPager 要被廢棄?官方 ViewPager2 升級版來臨Viewpager
- Spring Security 的 HttpBasic模式 活該被放棄SpringHTTP模式
- 我遇見的哪些 CSS 中有趣的尺寸、寬高CSS
- SAP QM 樣品廢棄後如何刪除physical samples記錄?
- JDK8-廢棄永久代(PermGen)迎來元空間(Metaspace)JDK
- 硬核觀察 #806 谷歌給出了廢棄 JPEG-XL 的理由:不愛了谷歌
- WebMvcConfigurerAdapter類被棄用後的兩種選擇WebMVCAPT
- Java 20中有哪些新功能? - symflowerJava
- 廢品回收小程式的功能模組和優勢
- 前端開發入門到實戰:HTML5新增和廢棄的標籤前端HTML
- UNitar&IUT:2024年全球電子廢棄物監測報告
- 聯合國:2020年全球電子廢棄物監測報告
- 移動端『H5日曆元件』已廢棄不再維護H5元件