| Author |
Comment/Response |
yehuda
|
06/09/12 05:27am
Well, first what you is convert form Hz into rad/sec and not as you posted
secondly, Just copying the example from the documentation center without looking into the details is not sufficient in this case
The examples maps between -1Hz to 1 Hz in steps of 1/3, while your plot is from 10Hz to 1MHz, so the range of the ticks you provide is not covered in the plot range. Even if it would, it would be impractical for such a bandwidth
Change the frequency ticks to (I'll site it clumsily to show you where your error is)
freqLowPower = 1;
freqHighPower = 6;
freqPowerStep = 1;
frequencyTicks =
N[Map[{#, #/(2 Pi)} &,
10^Range[freqLowPower, freqHighPower, freqPowerStep]], 1]
yehdua
URL: , |
|