Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Matlabで.xvファイル(Khoros Visualization Image)を開くにはどうすればよいですか?
私が言及した画像に対してのみ機能するようです。(最初の1つのKBには他の関連情報が含まれ、次に画像データが含まれます)
function d = loadimg(fn) fid = fopen(fn,'r'); data = fread(fid); fclose(fid); d = data(1025:end); d = reshape(d, 64,64); end
助けてくれてありがとう..