如何对matlab中矩阵中的每个数求对数

问题描述:

如何对matlab中矩阵中的每个数求对数

直接用log命令。

>> a=[10 100;100 10];
log10(a)
ans =
1 2
2 1