excel matlab 或spss 中的除法运算
答案:2 悬赏:50 手机版
解决时间 2021-02-26 05:00
- 提问者网友:锁深秋
- 2021-02-25 06:07
我现在又两张7*168的xls格式表格,现在想让两表格中的数据根据位置做除法,就是 a1/a1 a2/a2 的对应位置除法,获得一张新的7*168的表格,请问怎么做,用上述三种软件都可以。
最佳答案
- 五星知识达人网友:想偏头吻你
- 2021-02-25 07:27
把第一张表的数据(纯数据)放入A.txt;第二张表放入B.txt;两个文本文档放入matlab目录下,
matlab程序:
clear.clc;
load A.txt;load B.txt;
C=A./B
matlab程序:
clear.clc;
load A.txt;load B.txt;
C=A./B
全部回答
- 1楼网友:低音帝王
- 2021-02-25 07:42
你愿意用csvwrite吗,保存成csv文件,一样默认用excel打开
csvwrite
write a comma-separated value file
syntax
csvwrite('filename',m)
csvwrite('filename',m,row,col)
description
csvwrite('filename',m) writes matrix m into filename as comma-separated values.
csvwrite('filename',m,row,col) writes matrix m into filename starting at the specified row and column offset.
the row and column arguments are zero-based, so that row=0 and c=0 specifies the first value in the file.
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯