热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Matlab可读-没有给出最后一栏-Matlabreadtable-notgivinglastcolumn

ThereadtablefunctioninMatlabforreadinganMS-Excelspreadsheetisnotgivingmethelastcolum

The readtable function in Matlab for reading an MS-Excel spreadsheet is not giving me the last column. Why?

Matlab中用于读取MS-Excel电子表格的可读函数没有给我最后一栏。为什么?

How can I fix this?

我怎样才能解决这个问题?

My code:

function assetslist = loadAssets()
      xlFileDetails = 'mypath';
      xlsheet = 'mysheet';

      result = readtable(xlFileDetails,'Sheet',xlsheet,...
                        'ReadRowNames',true,'ReadVariableNames',true);
      result(:,end)=[]; % append empty list in case no data
      assetslist = result;
    end

Sample data from my excel file is:

我的excel文件中的示例数据是:

Num Ticker IQIndex IBIndex UseIB IbType IbCur IbXch 1 SPX Index SPX.XO 0
2 CCMP Index COMPX.X 0
3 RTY Index RUT.X RUT 1 IND USD RUSSEL

Num Ticker IQIndex IBIndex UseIB IbType IbCur IbXch 1 SPX Index SPX.XO 0 2 CCMP Index COMPX.X 0 3 RTY Index RUT.X RUT 1 IND USD RUSSEL

But the result of the call gives me data with the last column missing.

但是调用的结果给了我最后一列遗漏的数据。

Num Ticker IQIndex IBIndex UseIB IbType IbCur 1 SPX Index SPX.XO 0
2 CCMP Index COMPX.X 0
3 RTY Index RUT.X RUT 1 IND USD

Num Ticker IQIndex IBIndex UseIB IbType IbCur 1 SPX Index SPX.XO 0 2 CCMP Index COMPX.X 0 3 RTY Index RUT.X RUT 1 IND USD

(My real data has 11 columns and only 10 are retrieved...)

(我的真实数据有11列,只有10列被检索...)

I'm using Matlab R2017b.

我正在使用Matlab R2017b。

1 个解决方案

#1


3  

result(:,end)=[];  

deletes the last column.

删除最后一列。

Change it to

将其更改为

result(:,end+1)=[]; 

推荐阅读
author-avatar
打个的故事
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有