필터 지우기
필터 지우기

xlsread on mac os x!

조회 수: 1 (최근 30일)
babak
babak 2012년 5월 9일
i've been used xlsread function on windows with out any problem, but on mac os x, it doesnt work, there is always an error in line 129, file adress in mac os is different from windows, on mac adress is indicated by / but on windows by \ . which of them should i use on mac? i tried both of them, it didnt work, what shoul i do?
  댓글 수: 2
Friedrich
Friedrich 2012년 5월 9일
can you post your line of code and the error message you get?
babak
babak 2012년 5월 10일
>> [a,pr,b]=xlsread('Users/babakloghmani/Desktop/2','2.xls','a1:a3868')
Error using xlsread (line 129)
XLSREAD unable to open file 'Users/babakloghmani/Desktop/2'.
File 'Users/babakloghmani/Desktop/2' not found.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2012년 5월 9일
The '/' is a valid path separator on both OS-X and MS Windows.
xlsread() on OS-X (and Linux) before R2012a is restricted to "basic mode" and cannot handle .xlsx files or extended .xls files.
  댓글 수: 3
Friedrich
Friedrich 2012년 5월 10일
You use xlsread wrong. The fist input is the path to the xls file:
xlsread('Users/babakloghmani/Desktop/2.xls','a1:a3868') or if the "2" is a folder on your desktop
xlsread('Users/babakloghmani/Desktop/2/2.xls','a1:a3868')
Walter Roberson
Walter Roberson 2012년 5월 10일
xlsread('/Users/babakloghmani/Desktop/2.xls','a1:a3868')
Notice the leading "/". Without that, operating systems will look relative to the current directory. The leading "/" tells the OS that the path is absolute.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by