How can I draw i.e. x = 5 line in plot at Matlab?
I plot like that:
x = (-10:.1:10);
f= 10;
plot(x, f, 'r');
of course it doesn't work. For every variable of x, y is equal to 0 except for x=10. When x = 10 y equals to everything. How to plot this?
f = 10won't work, becausefandxmust have the same dimensions. You should rather usef = 10 * ones(size(x))instead. – Eitan T Nov 20 '12 at 19:19