First, use textscan() to read your file: f = fopen('yourFileName.txt', 'r'); data = textscan(f, '%d %d %f', 'HeaderLines', 1, 'MultipleDelimsAsOne', 1, ...
確定! 回上一頁