Import an Excel File
186 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mb12345
el 24 de Sept. de 2017
Comentada: Ahsan Mehmood
el 16 de Jun. de 2019
Hi,
I have given an Excel table. This Excel table I have imported with "Import Data" and saved as a cell array as "generate function". Now I want to asign the content of the imported file to a variable. Can I do that with: imp = importfile_1(file path of the created import file);
The problem is that it doesn't work atm. The entries in the variable are not equal to the excel entries.
At the end I want to have a two dimensional array with the entries of the Excel file.
I hope one of you can help me.
4 comentarios
Cedric
el 24 de Sept. de 2017
Editada: Cedric
el 24 de Sept. de 2017
The problem is that none of us seems to understand what you are trying to achieve overall. So we should start from the beginning: if you are trying to read the content of a file and extract part of this content, could you attach this file to your post? The is a staple icon for this purpose in the editor. Then tell us what it is that you want to extract, and for what purpose.
Respuesta aceptada
Cedric
el 25 de Sept. de 2017
Editada: Cedric
el 25 de Sept. de 2017
I think that I am starting to see what you did, and it is not something that we generally do actually, hence the misunderstanding.
Using the Import Data tool (and not the function), you loaded the content of an Excel workbook. Then you asked the tool to generate a function for you. Now the tool doesn't generate a function with the data. It generates a function for loading the data from the same Excel file that you initially opened, to allow you to bypass this step the next time that you want to read the data. What this function takes as an argument is the path/name of the original Excel file. So if you opened file MyData.xlsx with the Import Data tool, the correct call for loading the data from the same file is
data = importfile( 'MyData.xlsx' ) ;
or
data = importfile( 'C:\ ... whatever path ..\MyData.xlsx' ) ;
Now we never do all this with the import data tool. Instead we call directly the XLSREAD function (you can check that the importfile script does that too):
[~, data] = xlsread( 'MyData.xlsx' ) ;
where the first output of XLSREAD is a numeric array that we discard with ~ because you have no numeric data in your workbook, and the second contains the text.
If you don't want to read the original Excel file next time (because it is slow), you can now save the cell array data into a MAT-File using SAVE, and load it using LOAD (you'll have to read the doc to see how it works).
Apparently, you want to split each line into words, which you can do with STRSPLIT. You can try on the content of the first cell of data:
strsplit( data{1}, ' ' )
and see that you have a cell array of words. Then you can think about implementing e.g. a loop over all cells of data and store the words in another cell array for example.
14 comentarios
Walter Roberson
el 28 de Sept. de 2017
Ergebnis{j,1} = Ergebnis{j,1}(2:end-1);
Cedric
el 28 de Sept. de 2017
Editada: Cedric
el 28 de Sept. de 2017
Almost ;-) MATLAB has functions LENGTH and NUMEL. Yet, you could works on this differently, by replacing " characters when they exist (so you don't shorten words if they are not double-quoted) by empty strings. You can use e.g. STRREP for this, which can operate on the content of flat (non-nested) cell arrays:
>> words = {'"Hello"', 'World', '"Happy"'} ;
>> words = strrep( words, '"', '' )
words =
1×3 cell array
'Hello' 'World' 'Happy'
where you can see that 'Happy' was not shortened the way it would have been if we had suppressed the first and the last characters.
Once the code works as desired, don't forget to accept an answer in this thread.
Más respuestas (3)
Azzi Abdelmalek
el 24 de Sept. de 2017
Use xlsread function
3 comentarios
Image Analyst
el 24 de Sept. de 2017
To format the Excel worksheet before importing it into MATLAB, you need to use ActiveX. That will let you do things like format the font and how many decimal places are showing, etc.
Image Analyst
el 24 de Sept. de 2017
Looks like you forgot the extension. Try:
fullFileName = 'C:\Users\UserX\Desktop\filetoopen.xlsx'
[~, ~, imp] = xlsread(fullFileName);
Or if the data has the same data type in every column, you could use readtable():
imp = readtable(fullFileName)
15 comentarios
Ver también
Categorías
Más información sobre Data Import from MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!