Plot from negative infinitive to positive infinative

1 次查看(过去 30 天)
clc;
clear all;
close all;
n = (-Inf,Inf)
L = 1;
rectn = rectangularPulse(-1,1,n/L);
w = -8*pi:0.01:8*pi;
for i = 1:numel(w)
f_FT(i) = trapz(n/L,rectn.*exp(-1i*w(i).*n));
end
figure (1);
subplot(1,2,2);
plot(w, abs(f_FT));
subplot(1,2,1);
plot(n/L,rectn);
Hi all, I want to plot both from from -Inf to Inf. How can I do that in Matlab?

回答(1 个)

Walter Roberson
Walter Roberson 2022-2-28
Suppose that you are able to plot pixels as adjacent "classical" electrons -- 3*10^-15 meters.
Now ask to plot from negative infinity to positive infinity. How large would the plot be?
Well, after only 10^15 the plot would already be 3 metres wide. But 10^15 is a negligible fraction of infinity; there are physical quantities in the range of 10^88 so we should be expecting at least 10^73 meters. But even 10^88 is a negligible fraction of infinity.
If you use any finite size per pixel, then to plot an infinite range, you need an infinitely large physical plot. Even if the size per pixel were only the Planck distance (the distance below which the scale structure of the universe itself breaks down.)

类别

Help CenterFile Exchange 中查找有关 Two y-axis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by