Info

此问题已关闭。 请重新打开它进行编辑或回答。

what's the matter when i run a M.file?

1 次查看(过去 30 天)
Huadong Hu
Huadong Hu 2019-4-15
关闭: MATLAB Answer Bot 2021-8-20
These below are part of the contents of the M.file i want to run.
clc;
clear all;
clc;
addpath(genpath('Sample_test'));
addpath(genpath('LFToolbox0.4'));
LFMatlabPathSetup;
%% Step1: Decompress data.C.0/1/2/3---> to get white image data
fprintf('===============Step1: Unpack Lytro Files===============\n\n ');
LFUtilUnpackLytroArchive('Sample_test')
These below are the results in the command.
===============Step1: Unpack Lytro Files===============
Searching for files [ data.C.0 ] in Sample_test
??? Error using ==> textscan
First input must be of type double.
Error in ==> LFToolbox0.4\LFFindFilesRecursive.m at 83
FolderList = textscan(FolderList, '%s', 'Delimiter', pathsep);
Error in ==> LFToolbox0.4\LFUtilUnpackLytroArchive.m at 44
[AllVolumes, BasePath] = LFFindFilesRecursive(InputPath, FirstVolumeFname);
Error in ==> Demo at 23
LFUtilUnpackLytroArchive('Sample_test')

回答(2 个)

TADA
TADA 2019-4-15
textscan accepts a file id not a file path. Use fopen first
  5 个评论
TADA
TADA 2019-4-15
编辑:TADA 2019-4-15
Oh.... I can't say much about older versions of Matlab....
@Huadong Hu, you can try using
FileList = regexp(FileList, pathsep, 'split');
Or
FileList = strsplit(FileList, pathsep);
Hopefully that feature did exist back in 2004
Walter Roberson
Walter Roberson 2019-4-15
strsplit() is r2013a .
regexp() should be there. However after you use regexp with 'split', it is a good idea to use
dirlist = regexp(FolderList, pathsep, 'split');
dirlist(cellfun(@isempty, dirlist)) = [];
FolderList = dirlist;
If Folderlist had happened to begin or end with pathsep or if there had been multiple pathsep in a row, then regexp split would have left an empty cell; the indexing and cellfun is there to delete those empty cells.

Walter Roberson
Walter Roberson 2019-4-15
You are using MATLAB R14 from 2004 to attempt to run code that was written for R2014a. The code uses features that did not exist in your release.

标签

Community Treasure Hunt

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

Start Hunting!

Translated by