답변 있음
count number of rows in csv outside of matlab
Turns out this is not as easy of a question as you might think, especially if your CSV contains data that might be double-quoted...

대략 3년 전 | 0

| 수락됨

답변 있음
Merge datetime cells to create specific datetime format
If your data looks like: 2021,02,22,02,30,... then you might be better off calling readmatrix, and converting the columns A =...

대략 3년 전 | 0

답변 있음
how to save data into same excel sheet after each iteration
You can try writetable/writecell/writematrix with the 'WriteMode','append' parameter. e.g. writetable(myTable,'file.xlsx','Wr...

대략 3년 전 | 1

답변 있음
Unable to open file as a workbook excel 97
I tried opening one of your files in a hex editor, and it's not an excel file. It's a text file. What clued me in was a warning...

대략 3년 전 | 0

답변 있음
readtable command for csv file
Try this, opts = detectImportOptions(filename) T = readtable(filename,opts) I think the import options based default reading...

대략 3년 전 | 0

답변 있음
How to apply a function on all images in ImageDatastore ?
I think this is what you want. imds = imageDatastore(files,...) tds = transform(imds,@(img)classify(net,img)); YPred = readal...

대략 3년 전 | 0

| 수락됨

답변 있음
table calculation for CSV file
I tried readtable('CSVCWtable3') but MATLAB said Unable to find or open 'CSVCWtable3'. Check the path and filename or file permi...

대략 3년 전 | 0

답변 있음
How can I import multiple .CSV files in MATLAB and SISTEMATICALLY process the data of each file?
You could also look at tabularTextDatastore with transform, and writeall functions. This is the basic way that's done, but you m...

대략 3년 전 | 0

답변 있음
How to skip file in imageDatastore.ReadFcn?
The only way to do this is to remove the files from the Files list on the ImageDatastore, or make a copy of this dataset which c...

대략 3년 전 | 1

| 수락됨

답변 있음
how to fix "unrecognized table variable name" error?
'ReadVariableNames',false This tells readtable not to read variable names from the file. So all the variable names will be "Va...

3년 초과 전 | 0

답변 있음
problem with the function "fread"
The error indicates that fopen returned an invalid file ID. Try this: [fid,msg] = fopen(filename) if fid < 0 error(msg) ...

3년 초과 전 | 0

답변 있음
Read fixed number of numbers from text file
I assume the dots are meant as ellipses and not literally dots in the file. If so, you can use textscan pretty effectively here....

3년 초과 전 | 1

| 수락됨

답변 있음
Import multiple .csv files with different of variables and rows
More recent versions of MATLAB generate code with the Import Tool which used the Import Options and readtable. The code is simpl...

3년 초과 전 | 0

답변 있음
Csv file: reading values with comma
I think you need to set the decimal separator and thousands separator. Also, duration may be the better type for two of the vari...

3년 초과 전 | 0

답변 있음
Problem to read csv file with a blank line
Hi, As others have pointed out, your CSV (Comma separated value) file is actually semicolon separated. If readtable is using c...

3년 초과 전 | 0

답변 있음
How to import data from attatched csv file?
In R2020a, T = readtable('data.csv','TrimNonNumeric',true,'NumHeaderLines',11); or in earlier releases, opts = detectImportO...

3년 초과 전 | 1

답변 있음
How to import data from .txt file?
The textscan function expects a fileID, not a file name. you need to use fopen. [filename,pathname]=uigetfile({'*.fl.txt' 'Torq...

3년 초과 전 | 0

답변 있음
readtable with multiple date formats
Without seeing the file, I can only guess, but I'd try the following first: T = readtable(filename,'DateLocale',locale,...) No...

3년 초과 전 | 0

| 수락됨

답변 있음
How to use Excel application, how can i know all the functions and ways to use it?
Active X is a Microsoft feature, controling the application depends on the APIs the application exposes. For Excel, you should c...

3년 초과 전 | 1

답변 있음
using spreadsheet column headers as variable
When you create import options from scratch, you need to specify all the information, including where the variablenames and data...

거의 4년 전 | 0

답변 있음
Error using readmatrix - Unable to determine range. Range must be a named range in the sheet or a single cell within 'XFD1048576'.
'Range' also accepts numeric inputs [r1 c1 r2 c2], the drawback being you need to specify the columns. You can specify only the...

거의 4년 전 | 1

| 수락됨

답변 있음
Using writetable to create a text file
WriteMode is available in R2020a. What version are you using?

대략 4년 전 | 0

답변 있음
How to change the date format of ,txt file?
https://www.mathworks.com/matlabcentral/answers/516121-how-do-i-specify-a-datetime-format-when-reading-a-csv-excel-file

대략 4년 전 | 0

| 수락됨

답변 있음
Errors using xlsread to import data from Excel
Sometimes the Excel instalation can break xlsread, there shouldn't be a reason MATLAB install changed anything for you. It might...

대략 4년 전 | 1

| 수락됨

답변 있음
how to check whether a sheet exists or not, while using readtable function
I don't know if it's any better, but there is https://www.mathworks.com/help/matlab/ref/sheetnames.html Otherwise, try/catch mi...

대략 4년 전 | 1

답변 있음
Error in XML file
You could try fid = fopen(fname); bytes = fread(fid); fclose(fid); find(bytes==1) If that doesn't find anything, then it ma...

대략 4년 전 | 0

답변 있음
Does MATLAB add extra data to text files?
I'd check the new line characters "\r" isn't typically used for a new line in most modern environments. It may be that the tex...

대략 4년 전 | 1

| 수락됨

답변 있음
textscan does not read all rows
If you pass in 'ReturnOnError',false with the textscan call, there will be an error message where the format cannot read your fi...

4년 초과 전 | 0

답변 있음
readtable skipping some rows
detectImportOptions detecting Space as the delimiter, (correctly I think) and is looking at the "N/A" and "NE 45" and treating t...

4년 초과 전 | 0

답변 있음
Read text file with multiple rows of fields
The current best way I know how to do this is with TEXTSCAN. fmt = "%s%s%s%s%*[^\r\n]%*[\r\n]%s%s%s%s" fid = fopen('sampleFile...

4년 초과 전 | 1

| 수락됨

더 보기