goodjack 发表于 2010-11-19 11:06

excel中的日期如何读入matlab并画图

本帖最后由 goodjack 于 2010-11-19 11:11 编辑

1月2日        2
2月5日        4
2月6日        3
3月23日        5
4月21日        5
5月16日        6
5月18日        3
6月5日        1
6月12日        2
6月16日        7
6月22日        1
7月14日        1
7月18日        1
7月26日        2
8月4日        5
8月6日        3
9月12日        2
9月18日        2
9月28日        1
10月4日        4
10月7日        6
11月2日        5
11月5日        7
11月15日        2
11月18日        3
11月19日        4
12月14日        5
12月21日        1

要求横坐标为月份,纵坐标该月份对应数值的累加

qibbxxt 发表于 2010-11-19 11:32

1.可以用xlsread读入,日期以字符串读入 = xlsread(filename) reads data from the first worksheet in the Microsoft Excel spreadsheet file named filename and returns the numeric data in array num. Optionally, returns the text fields in cell array txt, and the unprocessed data (numbers and text) in cell array raw.2.设置坐标轴的xticklabel属性
3.如果很多的话,可以旋转xticklabel
http://www.mathworks.com/matlabcentral/fileexchange/3486-xticklabelrotate

zhouyang664 发表于 2010-11-19 12:50

2用datetick即可解决!
3用cumsum函数!
查看一下help就会使用了!

goodjack 发表于 2010-11-20 08:53

cumsum是对列求和,但是我这里所有数据都在同一列
我要求的是比如7月份,那应该是
7月14日      1
7月18日      1
7月26日      2
这三组数据相加啊

zhouyang664 发表于 2010-11-20 14:52

你可以按照这个数组的第一列的第一个字符将月份分开存储,然后用cumsum即可!
页: [1]
查看完整版本: excel中的日期如何读入matlab并画图