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 | 29 | 30 |
Tags
- SQL
- 파이썬 시각화
- Google Analytics
- 텐서플로
- 리눅스
- 월간결산
- 티스토리
- MySQL
- 독후감
- python visualization
- 한빛미디어
- matplotlib
- Linux
- 서평단
- 블로그
- 매틀랩
- 파이썬
- 한빛미디어서평단
- Ga
- tensorflow
- Blog
- 서평
- 딥러닝
- 통계학
- Pandas
- Tistory
- Visualization
- Python
- 시각화
- MATLAB
Archives
- Today
- Total
목록griddata (1)
pbj0812의 코딩 일기
[MATLAB] griddata 사용법
clear all; close all; clc;[lon lat zeta] = textread('G:\2016_UM\glob_map.dat');%파일 읽기 lon, lat, zeta 한 줄 형태 a = 1321 LAT = reshape(lat,a,length(lat)/a); LON = reshape(lon,a,length(lon)/a); ZETA = reshape(zeta,a,length(zeta)/a);% 실제 형태 n*m 으로 변환 pcolor(LON,LAT,ZETA); shading flatx = 1:a; y = 1:length(lat)/a; x_v2 = linspace(LON(1),LON(end),620); y_v2 = linspace(LAT(1),LAT(end),807); [X,Y]=meshgri..
ComputerLanguage_Program/MATLAB(OCTAVE)
2018. 9. 3. 23:04