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
- 서평단
- MATLAB
- 블로그
- 파이썬 시각화
- 독후감
- matplotlib
- Blog
- 월간결산
- 텐서플로
- 딥러닝
- 서평
- 티스토리
- Linux
- Pandas
- Ga
- 시각화
- 파이썬
- Tistory
- 매틀랩
- 통계학
- Google Analytics
- MySQL
- Python
- python visualization
- Visualization
- 한빛미디어
- 한빛미디어서평단
- 리눅스
- tensorflow
- SQL
Archives
- Today
- Total
pbj0812의 코딩 일기
[MATLAB] while 문을 이용한 조건 두개 예시 본문
clear all; clc; close all;
wait_time=input('write update time(sec) : ')
num_file=textread('G:\2016_대지진\m_file\00__gui\test_empty_data\tsunami.txt');
length_file=size(num_file);
length_file=length_file(1);
a1=num_file(end,1);
a2=num_file(end,2);
aaa=(a1~=a2);
bbb=(length_file<2)
ccc=aaa+bbb;
while ccc~=0
disp('no signal...');
pause(wait_time);
num_file=textread('G:\2016_대지진\m_file\00__gui\test_empty_data\tsunami.txt');
length_file=size(num_file);
length_file=length_file(1);
a1=num_file(end,1);
a2=num_file(end,2);
aaa=(a1~=a2);
bbb=(length_file<2)
ccc=aaa+bbb;
end
disp('warning')
'ComputerLanguage_Program > MATLAB(OCTAVE)' 카테고리의 다른 글
[MATLAB] 현재 폴더 파일 개수 세기 (0) | 2018.09.03 |
---|---|
[MATLAB] 해당 이름의 파일, 폴더 유무 확인 (0) | 2018.09.03 |
[MATLAB] 특수문자표 (0) | 2018.09.03 |
[MATLAB] 그림 파일 저장 크기(사이즈) 지정 (0) | 2018.09.03 |
[MATLAB] nc 파일 정보 읽기 (0) | 2018.09.03 |
Comments