I am looking for a simple way to build a matrix of the form:
Table[{x,x^2},{xmin,xmax,?}]
but with a kind of logarithmic spacing from xmin to xmax. Thanks in advance.
I am looking for a simple way to build a matrix of the form:
Table[{x,x^2},{xmin,xmax,?}]
but with a kind of logarithmic spacing from xmin to xmax. Thanks in advance.
Table[{x, x^2}, {x, PowerRange[1, 64, 2]}]? – Chris K Jun 05 '23 at 11:22PowerRangeorPowerSubdivide: https://resources.wolframcloud.com/FunctionRepository/resources/PowerSubdivide/ – SHuisman Jun 05 '23 at 21:07