FREAD() help

3 ビュー (過去 30 日間)
Edward
Edward 2012 年 4 月 4 日
Hi, ive got an array of numbers [2 4 6 8] written into a file by fprintf, Im using n=fread(fid) to get this data from a file,
im getting the numbers [50 32 52 32 54 32 56]
im aware these numbers are ascii format for the numbers in the file,
is there a way i can get the [2 4 6 8] back from these ascii numbers?
Its been suggested that i dont use fprinf but i need to be able to print text aswell as numbers.
thanks

採用された回答

Wayne King
Wayne King 2012 年 4 月 4 日
A = [50 32 52 32 54 32 56];
B = str2num(char(A));

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by