syms a b c r x y z   %%미지수입력해주고

r = -2: .2 : 2       %% 범위정해주고

[x,y,z] = meshgrid(r,r,r)     %% 범위 넣어주고

a = 1/(x.^2+y.^2+z.^2)^(3/2)         %% 식을 입력하는데 

여기서 이런에러가나요..

 Function 'mpower' is not defined for values of class 'double' and attributes 'full 3d real'.

뭐가 잘못된거죠?? ㅠㅠ