||
用了四五年matlab,遇到问题基本靠搜索引擎,没有看过正经学习的书籍的后果
就是今天我才知道多维数组求和不用写多个sum或者mean,之前还好奇为什么
matlab没有像老古董fortran那样的数组索引方式
example:
test_martrix = rand(4,4,4,4);
test_mean = mean(test_martrix(:)); % 这个等价于 mean(mean(mean(mean(test_martrix))))
test_sum = sum(test_martrix(:)); % 这个等价于 sum(sum(sum(sum(test_martrix))))
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-11-23 05:50
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社