Plotting Piecewise function produces white empty graph
古いコメントを表示
Consider the following code :
function [X] = FourierSinc(a,b,K)
w = linspace(-10,10,600);
syms w
U = piecewise(abs(w)<a*pi,K, abs(w)>a*pi, 0);
X=exp(-1i*b*w)*U;
figure, fplot(w,X);
Taking simple values like a=2; b=4; c=3; produces a (correct) answer :
ans =
piecewise(abs(w) < 2*pi, 3*exp(-w*4i), 2*pi < abs(w), 0)
However the graph displays nothing but white and empty grid. I hope someone helps me and thank you very much!
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Assumptions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!