일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LaTeX
- Linear algebra
- Zotero
- 인공지능
- Python
- 우분투
- 논문작성법
- teps
- 옵시디언
- JAX
- 수식삽입
- WOX
- 수치해석
- 에러기록
- Julia
- Numerical Analysis
- 텝스
- IEEE
- 고체역학
- 텝스공부
- pytorch
- 딥러닝
- matplotlib
- Statics
- 논문작성
- obsidian
- 생산성
- Dear abby
- ChatGPT
- MATLAB
- Today
- Total
목록분류 전체보기 (434)
뛰는 놈 위에 나는 공대생
latex에서 table을 만드는 것이 일반 파워포인트나 워드, 한글에 비해 난이도가 있어서 다들 table generator를 많이 쓰는데 이렇게 만들어서 export했을 때 본인이 원하는 대로 수정하려면 어느정도 원리를 이해할 필요가 있다. 그리고 개인적으로는 export할 때 너무 코드가 난잡해서 불편할 때가 많았다. 그래서 정리하는 표 만들기 방법. 참고* 행과 열이 맨날 헷갈리는데, 보통 글을 쓸 때 '행간'을 얼마로 지정할지 정한다. 행은 즉, 각 줄의 사이 간격을 의미한다. 나는 이런 식으로 구별한다. 1. 기본 코드 구성 table을 만들 때는 위치와 정렬 및 구분자를 지정해야 한다. \begin{table}[hbt] # 위치 지정 \caption{캡션} \label{tab: 이름} \be..
Woman Reconsiders Pledge Made to Ailing Boyfriend - March 09, 2023 - DEAR ABBY: My boyfriend of four years has been diagnosed with chronic traumatic encephalopathy, or CTE. We're both only 51. Obviously, we face a grim reality. He has already tried once to end our relationship to spare me the inevitable, but I convinced him I'm in it to the bitter end. Now he's accusing his family (and me) of be..
참고문헌을 bibtex로 export하는 과정에서 알게 된 내용을 적고자 한다. 문제상황 : 논문을 bibtex 파일로 export하는데 논문에서 요구하는 제목 형식은 2가지가 있다. Some citation styles, such as APA, require the use of sentence case for titles (e.g., “Oxidation and reduction of iron by acidophilic bacteria”). Others, like the Chicago Manual of Style, require title case (“Oxidation and Reduction of Iron by Acidophilic Bacteria”). 예를 들면 내가 인용하고 싶은 문헌의 제목이 Th..
Friend's Struggle With Diabetes Causes Concern DEAR ABBY: My best friend, who is 54, has had Type 1 diabetes since she was 9. She takes two insulin shots a day -- one in the morning and one in the evening. We live together, and at night her blood sugar drops pretty low. I can tell when it's happening because she becomes unresponsive. Twice she has had seizures that resulted in 911 calls. I have ..
1. 서지관리프로그램이란? 대학원생이라면 접하는 구글 스칼라. 이 구글 스칼라에서 인용을 클릭하면 다음과 같은 화면을 볼 수 있다. BibTeX는 LaTeX에서 참고문헌을 추가할 때 쓰는 형식이다. 예를 들면 이런 것. @book{barro1997macroeconomics, title={Macroeconomics}, author={Barro, Robert J}, year={1997}, publisher={MIT Press} } EndNote는 endnote에 호환되는 파일이고 RefMan은 Mendeley에 호환되는 파일(ris파일인데 다른 서지 관리 프로그램 모두에게 적용 가능)이고 RefWorks는 RefWorks에 직접 export한다. 참고로 구글스칼라에서 export한 파일을 전적으로 신뢰하면 ..
Sampyl이라는 라이브러리를 사용하기 전에 간단한 예제가 있어서 posterior distribution과 sampler에 대한 tutorial을 좀 정리해보았다. $\begin{aligned} & Y \sim N\left(\mu, \sigma^2\right) \\ & \mu=\beta_0+\beta_1 x_1+\beta_2 x_2\end{aligned}$ 다음과 같이 $\beta$가 계수의 어떤 y와 x 간의 모델이 있다고 해보자. 이 문제에서는 $\beta=[2,1,4]$인 경우이다. 따라서 아래와 같이 $x_{0}=1, x_{1},x_{2}$에 대하여 $y$가 분포되어있다. # Number of data points N = 200 # True parameters sigma = 1 true_b = ..
코드 안에 네트워크가 2개가 있고 이 2개의 네트워크를 각각 다른 learning rate로 학습하고 싶을 때 사용하는 코드다. 아래와 같이 개별로 learning rate를 설정하면 net2 안에 있는 파라미터는 0.001로 학습되고 net1 안에 있는 파라미터는 0.01로 학습된다. optimizer = optim.Adam([ {'params': func.net1.parameters()}, {'params': func.net2.parameters(), 'lr': 0.001} ], lr=0.01) optimizer.param_groups[0]['capturable'] = True print(optimizer.param_groups[0]['lr']) print(optimizer.param_groups[1..
figure를 여러 개 그릴 때 figure가 겹쳐있어서 일일이 다 옮겨줘야하는 불편함이 있었다. 이 경우에 사용할 수 있는 함수가 movegui라는 함수이다. figure 핸들을 받아서 f = figure(1); movegui(f, 'south'); 와 같이 해도 되고 figure 핸들을 받지 않더라도 movegui(방향)만 사용하면 현재 figure 또는 콜백 figure를 옮겨준다. 예: movegui(f,[150 -50]) 예: movegui('west') 위의 같은 형태로 위치를 지정할 수 있다. 1. 직접 위치 지정 (이는 원래 figure 생성할 때도 수행할 수 있다) [x y]의 경우네는 x위치, y위치를 지정하는 것이다. x위치는 화면 왼쪽으로 부터 얼마나 떨어졌는지를 나타내고 y위치는 ..
scipy에 있는 scipy.interpolate.RegularGridInterpolator를 쓸 때 발생했던 오류이다. 코드를 좀 살펴보면 내가 interpolation하기 위해 넣은 값이 내삽을 위해 지정된 값 범위에서 벗어날 때 return하는 오류이다. 예를 들어 나는 x=[0,1,2,3,4]일 때의 y값을 넣어놨는데 만약 x=5.5값을 넣으면 범위 밖에 벗어나므로 처리할 수 없다. ValueError: One of the requested xi is out of bounds in dimension 0 나의 경우에는 내가 x값을 잘못 넣었기 때문에 이런 일이 일어난 거지만 만약 외삽(extrapolate)을 원하는 경우라면 다음과 같이 bounds_error = False로 지정하고 fill_va..
Grandparents Make Little Effort To See Grandkids DEAR ABBY: I'm 33 with a wonderful husband and amazing kids, ages 4 and 6. I have a close bond with my parents. We live in a city about 80 miles from them. It seems like we are always the ones to do the visiting, and I have to practically beg them to visit me for one overnight visit a year. My house is smaller than theirs, but we offer up our bedr..