Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- python
- nonhomogeneous linear system
- 알고리즘 분석의 실례
- Big-Oh 예제
- matrix fo a linear transformation
- homogeneous linear system
- matrix-vector product
- itertools
- 랜덤 순서 배열
- linear dependence
- solutions of matrix equation
- 코틀린 Hello World!
- 이진 탐색
- 빅오메가
- recursive algorithms
- trivial solution
- NumPy
- Big Theta
- 코틀린 시작하기
- 배열 섞기
- 빅오 표기법
- 빅세타
- Big Omega
- one-to-one
- matrix trnasformations
- Big-Oh notation
- 재귀함수
- nontrivial solution
- Big-O 예제
- 일차변환
Archives
- Today
- Total
목록Julia (1)
코딩 연습
(줄리아) 형 변환
문자를 숫자로 바꾸는 경우 julia> parse(Int64, "53") 53 julia> parse(Float64, "1.414") 1.414 julia> parse(Int64, "balck pink") ERROR: ArgumentError: invalid base 10 digit 'b' in "balck pink" 소수를 정수로 바꾸는 경우 julia> trunc(Int64, 3.141592) 3 julia> trunc(Int64, -3.141592) -3 숫자를 문자로 바꾸는 경우 julia> string(123) "123" julia> string(2.718) "2.718"
Julia
2021. 7. 13. 12:13