필터 지우기
필터 지우기

Problems using pmtk3 in OS X

조회 수: 2 (최근 30일)
Fred
Fred 2014년 3월 11일
편집: john 2014년 3월 28일
I'm trying to use Kevin Murphy's pmtk3 software.
I've encountered problems when the loadData() function is called. I think I've narrowed it down to the stat() function call in loadData().
I can't find the stat() function using help stat. I think the stat() function called might be the PERL stat function.
Any suggestions & help is appreciated.

답변 (1개)

john
john 2014년 3월 28일
편집: john 2014년 3월 28일
Hi,
I had the same problem. Here's a work around, not especially elegant. I downloaded the data files manually and unzipped them into the C:\pmtk3-master\pmtkdataCopy directory (should be a bunch of directories, one for each data set). Then I modified the code in loadData.m to
%[info,msg,err] = stat(dest);
%if (msg == 0)
if(true)
to bypass the stat function completely. Since this function is supposed to check whether the data has already been downloaded eveything should work fine.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by