This plot is Indeterminate at x==0:
siney = Plot[Sin[x]/x, {x, -5 \[Pi], 5 \[Pi]},
PlotRange -> {{- 5 \[Pi], 5 \[Pi]}, {-1, 1}}, Frame -> True,
Exclusions -> x == 0, ExclusionsStyle -> Red]
So why an I not getting a red vertical at that point?
Limit[Sin[x]/x, x -> 0]gives1. Could you please draw what graphical output you are expecting? – Syed Nov 11 '22 at 23:07Plot[Sin[x]/x, {x, -5 Pi, 5 Pi}, PlotRange -> {{-5 Pi, 5 Pi}, {-1, 1.1}}, Frame -> True, Exclusions -> x == 0, ExclusionsStyle -> Directive[Red, AbsoluteThickness[4]]]– Bob Hanlon Nov 11 '22 at 23:10Sinc[x]the exclusion isn't necessary. – Bob Hanlon Nov 11 '22 at 23:17