hex
fi
객체의 저장된 정수에 대한 16진수 표현
설명
예제
fi
객체의 저장된 정수를 16진수 형식으로 보기
값이 -1
과 1
이고, 워드 길이가 8비트이고 소수부 길이가 7비트인 부호 있는 fi
객체를 생성합니다.
a = fi([-1 1], 1, 8, 7)
a = -1.0000 0.9922 DataTypeMode: Fixed-point: binary point scaling Signedness: Signed WordLength: 8 FractionLength: 7
fi
객체 a
의 저장된 정수에 대한 16진수 표현을 구합니다.
b = hex(a)
b = '80 7f'
파일에 16진수 데이터 쓰기
이 예제에서는 MATLAB® 작업 공간의 16진수 데이터를 텍스트 파일에 쓰는 방법을 보여줍니다.
데이터를 정의하고, hexdata.txt
라는 쓰기 가능한 텍스트 파일을 만듭니다.
x = (0:15)'/16; a = fi(x, 0, 16, 16); h = fopen('hexdata.txt', 'w');
fprintf
함수를 사용하여 데이터를 hexdata.txt
파일에 씁니다.
for k = 1:length(a) fprintf(h, '%s\n', hex(a(k))); end fclose(h);
만든 파일의 내용을 보려면 type
함수를 사용하십시오.
type hexdata.txt
0000 1000 2000 3000 4000 5000 6000 7000 8000 9000 a000 b000 c000 d000 e000 f000
파일에서 16진수 데이터 읽어오기
이 예제에서는 텍스트 파일의 16진수 데이터를 다시 MATLAB® 작업 공간으로 읽어오는 방법을 보여줍니다.
데이터를 정의하고 hexdata.txt
라는 쓰기 가능한 텍스트 파일을 만들어 해당 데이터를 hexdata.txt
파일에 씁니다.
x = (0:15)'/16; a = fi(x, 0, 16, 16); h = fopen('hexdata.txt', 'w'); for k = 1:length(a) fprintf(h, '%s\n', hex(a(k))); end fclose(h);
hexdata.txt
를 읽기로 열어서 그 내용을 작업 공간 변수로 읽어옵니다.
h = fopen('hexdata.txt', 'r'); nextline = ''; str = ''; while ischar(nextline) nextline = fgetl(h); if ischar(nextline) str = [str; nextline]; end end fclose(h);
올바른 스케일링을 사용하여 fi
객체를 만들고, 그 객체에 str
변수에 저장된 16진수 값을 할당합니다.
b = fi([], 0, 16, 16); b.hex = str
b = 0 0.0625 0.1250 0.1875 0.2500 0.3125 0.3750 0.4375 0.5000 0.5625 0.6250 0.6875 0.7500 0.8125 0.8750 0.9375 DataTypeMode: Fixed-point: binary point scaling Signedness: Unsigned WordLength: 16 FractionLength: 16
입력 인수
a
— 입력 배열
fi
객체
입력 배열로, fi
객체로 지정됩니다.
데이터형: fi
버전 내역
R2006a 이전에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)