Where can I find a list of built-in example data?

조회 수: 8 (최근 30일)
Chad Greene
Chad Greene 2014년 6월 17일
편집: Jason Nicholson 2014년 6월 18일
When I come up with examples for functions that I write, the first several lines of my example files are often spent creating fake data. Example data like load train are quite helpful because they are built into Matlab, but I have not been able to find a clear list of what example data are available, and on what Matlab releases.
For my current task, I'd like to find a chart of example data associated with the Mapping Toolbox. Does this list exist somewhere?
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2014년 6월 17일
I'm not sure that such a list for each toolbox exists. I noticed that the Statistics Toolbox mentioned some of the data sets that it includes ( http://www.mathworks.com/help/stats/_bq9uxn4.html) but I couldn't see anything for the Mapping Toolbox. You may have to do what Jason suggests below.

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

답변 (2개)

Jason Nicholson
Jason Nicholson 2014년 6월 17일
편집: Jason Nicholson 2014년 6월 17일
This will work:
pathFolderList = strsplit(path(),';');
matFilesOnPath = cell(size(pathFolderList));
matFileCount = 0;
for iFolder=1:length(pathFolderList)
matFilesOnPath{iFolder} = ls([pathFolderList{iFolder} filesep '*.mat']);
matFileCount = matFileCount + size(matFilesOnPath{iFolder},1);
end
I had 1,025 mat files on my path.
Bare in mind that you may have toolboxes other will not. If you stick to the folders contained as part of the core MATLAB functionality, you should be able to find data that everyone has if the versions are the same.
  댓글 수: 3
Image Analyst
Image Analyst 2014년 6월 17일
You can use allwords:
folderNamesList = allwords(someStringWithSemicolons,';');
Jason Nicholson
Jason Nicholson 2014년 6월 18일
편집: Jason Nicholson 2014년 6월 18일
Yes, strsplit is new. The copyright in the file says 2012.
You can also use
pathFolderList = regexp(path(), ';', 'split');
regexp has been around for a long time.

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


the cyclist
the cyclist 2014년 6월 17일
I don't know if this is a complete list, but here are some examples .

카테고리

Help CenterFile Exchange에서 Standard File Formats에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by