MATLAB: How calculated it

displogspace

Hello, Could you explain it? how calculate it? Thanks

Best Answer

logspace(A, B, C) is 10.^linspace(A, B, C)
linspace(1,5,4) is 1, 7/3, 11/3, 5, and the output you see is 10 to the power of those.
Related Question