필터 지우기
필터 지우기

How to load a cell array which contains both strings and numbers to matlab?

조회 수: 1 (최근 30일)
I have a cell array that has both strings and numbers. I want to load all the elements of the cell array. For the same I used the following method:
load(filename);
This command is loading only strings and excluding the columns that has numbers. Basically since my file is not .mat extension, it is treating it as ASCII file and loading only text.
I tried "importdata(filename)" to import the file directly from excel. But that gives me struct of 1*1 with text and numbers separated. I need the elements to be imported into another cell array of same dimension.
Is there a way to load all the values?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 7월 30일
For Excel file use xlsread function
[num,text,both]=xlsread('FileName')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by