vb画tan函数图像If Combo1.Text = "tan" ThenFor x = -15 To 15 Step

问题描述:

vb画tan函数图像
If Combo1.Text = "tan" Then
For x = -15 To 15 Step 0.001
y = tan(w * x+fi*pi/180)
Picture1.PSet (x,y),RGB(0,255,0)
Next x
End If
为什么运行之后没有显示呢?
知道啦,是我的Tan的大小写跟之前的不一致了.那fi*pi/180与fi有什么区别没,还有我编cot函数时总是提示数据溢出是怎么回事,If Combo1.Text = "Cot" Then
For x = -15 To 15 Step 0.001
y = 1 / (Tan(w * x))
Picture1.PSet (x,y),RGB(0,255,0)
Next x
End If
1个回答 分类:综合 2014-11-28

问题解答:

我来补答
答案补充:Cot函数这样修改即可.主要是你没有定义y的类型.至于fi*pi/180与fi有什么区别,那要根据你的fi单位而定.如果你是以角度输入的,那么应该加上*pi/180,如果本身是以弧度输入的,就直接写fi即可.
====================
Private Sub Command1_Click()
Dim x As Single, y As Single
Picture1.Scale (-15, 15)-(15, -15)
For x = -15 To 15 Step 0.001
w = 1
y = 1 / (Tan(w * x))
Picture1.PSet (x, y), RGB(0, 255, 0)
Next x
End Sub
===================
建一个Command1,Picture1,Combo1.使用的时候,请先在Combo1中选择或者输入tan,然后单击按钮.
代码如下.
=================
Const pi = 3.14159265
Private Sub Command1_Click()
Dim x As Single, y As Single, w As Single, fi As Single
If Combo1.Text = "tan" Then
w = 1
fi = 0
Picture1.Scale (-15, 15)-(15, -15)
For x = -15 To 15 Step 0.001
y = Tan(w * x + fi)
Picture1.PSet (x, y), RGB(0, 255, 0)
Next x
End If
End Su
 
 
展开全文阅读
剩余:2000
上一页:画钩的
下一页:速率