DEBUG, CHECK ERRORS TO RUN MATLAB
Info
This question is closed. Reopen it to edit or answer.
Show older comments
close all; clear all; clc;
fileNameVerStable = 'U2044XA_MY55090001_NORM_FADC_0degC.csv';
verifyExternalStableRADC = 0 ;
showDetailedResidualErrorsVer =0;
tempFileName = strsplit( fileNameVerStable, '.csv');
fileVerNameDisplay = tempFileName;
%%%%%%%%%%%%%%%%%%%%
Unit = 'U2049XA_HQ10000024_NORMFILTOFF_FADC';
fileName ='U2049XA_HQ10000044_NORM_FADC_ORIcombined.xlsx' ;
inputFileName = cellmat (fi);
Sorting_hhc100(Unit) = [fileName, inputFileName];
% To create temporary File
tempFilename = strsplit(fi,'-');
%STR = importdata ('U2043XA_MY54520003_AVER_FADC.csv');
%tempfileName = regexprep (STR, '<.*?>' , ' ');
fileNameDisplay = [tempFileName(1,1) tempFileName(1,2)];
%%this is assumed u have combined the data from code above. U can input the
%%combined filename to fasten the routine
% eg : fileName ='U2049XA_HQ10000028_AVER_FADC_combined.csv';
% fileName ='U2043XA_MY54520003_AVER_FADC.csv';
% inputFileName = fileName;
4 Comments
Wee Shan Chong Yap
on 12 Jul 2017
Geoff Hayes
on 12 Jul 2017
Where have you defined fi? Is this a string (which is valid input to strsplit or something else? You also use fi as
fileName ='U2049XA_HQ10000044_NORM_FADC_ORIcombined.xlsx' ;
inputFileName = cellmat (fi);
Does this mean that fi is a cell array? Please clarify.
Wee Shan Chong Yap
on 20 Jul 2017
Walter Roberson
on 20 Jul 2017
What is cellmat ? Do you mean cell2mat ?
fi does not exist in your code unless you have a function by that name. You have "clear all" so there is no possibility of it being a variable that was defined before the code we can see.
Answers (0)
This question is closed.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!