x=1:100;
a=log2(x);
b=log10(x);
c=log(x);
d=exp(x);
table=[x; a; b; c; d]'

이거 출력하면 table 행렬이 전부 0행렬이되는데 왜그런거에요...?