In Matlab, I can use logspace(A,B,N) to generate a vector of length N, containing points between 10^A and 10^B evenly spaced along a logarithmic axis. However, because of the nature of the logarithm, these points usually end up at data points which make no sense in themselves, and I have to create a logspace with a very large number of points if I want to make sure that a certain data point is exactly represented in the vector.
Is there a way for me to specify certain data points that should be included in the vector?
For example, logspace(1,10,30, [25 50 75]) would generate a vector of lenght 30 with points distributed almost equally along a logarithmic axis, but making sure that all the points 25, 50 and 75 are included.
logspaceoutput? – reve_etrange Nov 15 '11 at 5:24