일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- 싱글셀 분석
- pandas
- HTML
- CUT&RUN
- drug muggers
- js
- drug development
- Batch effect
- scRNAseq
- cellranger
- PYTHON
- DataFrame
- julia
- ChIPseq
- javascript
- matplotlib
- single cell rnaseq
- Bioinformatics
- github
- ngs
- single cell analysis
- MACS2
- python matplotlib
- scRNAseq analysis
- 비타민 C
- EdgeR
- Git
- CSS
- CUTandRUN
- single cell
Archives
- Today
- Total
바이오 대표
[ Julia ] 기초 문법 (variable, functions, for, if, array) 본문
Mathematical Optimization/Julia
[ Julia ] 기초 문법 (variable, functions, for, if, array)
바이오 대표 2021. 9. 26. 21:40
< Variables >
= 로 변수 설정 : x = 3
type 알기 : typeof(x)
<Functions>
function f( )
return
end
간단한 식은 f(x) = 2 + x 와 같이 표현 할 수 도 있다
< For loops >
for
end
< if >
output : true or false (Boolean)
< Arrays >
!!! index는 1 부터 시작한다
arrays 생성 예시 ↓
1D arrays (vectors)
- vec = [i^2 for i in 1:10] - array comprehension
2D arrays (matrices)
- m = [1 2
3 4], - zeros(5, 5),
- zeros(Int, 4, 5),
- [i + j for i in 1:5, j in 1:6]
'Mathematical Optimization > Julia' 카테고리의 다른 글
[Differentiation] using Zygote, reverse differentiation (0) | 2021.10.13 |
---|---|
[Differentiation] using Symbolics, differentiation (미분) (0) | 2021.10.13 |
[Optimization ] Ackley 그래프 그리기 (0) | 2021.10.13 |
[Julia] 기본 코드 ( ] , using, include( ), println( ) ) (0) | 2021.09.26 |