4-24-1

Jenday1230 · April 24, 2026
clc 
clear 
x = linspace(-10,10,100);
y = 9 ./ tan(x); 
plot(x,y)
grid on 
xlabel('x')
ylabel('y')
title ('x cot(x) = 9')
Output

Comments

Please sign up or log in to contribute to the discussion.