gpt4 book ai didi

c# - Mandelbrot 程序没有输出正确的数据

转载 作者:行者123 更新时间:2023-11-30 21:31:11 24 4
gpt4 key购买 nike

我的类(class)布置了一项作业,要求我编写一个程序来绘制曼德尔布洛特图形。
我们必须基本上让程序绘制结果的位图。

问题是,我的 CalcMBF 函数只输出 2 作为 Mandelbrot 数。
我完全不知道为什么会这样。谁能帮帮我?

这是我的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Mandelbrot_Figure
{
class PreMainClass
{
static void main (String[] args)
{
Form1 screen;
screen = new Form1();
Application.Run(screen);
}
}

public partial class Form1 : Form
{
Label xInputLabel = new Label();
Label yInputLabel = new Label();
Label maxInputLabel = new Label();
Label scaleInputLabel = new Label();
TextBox xInput = new TextBox();
TextBox yInput = new TextBox();
TextBox maxInput = new TextBox();
TextBox scaleInput = new TextBox();
Button okButton = new Button();
double xValue = 0;
double yValue = 0;
double maxValue = 0;
double scaleValue = 0;
double pixVal = 0;
double xCalc = 0;
double yCalc = 0;
double[,,] mArray = new double[400, 400, 1];

public Form1()
{
InitializeComponent();
BackColor = Color.FromArgb(255, 255, 255);
Text = "Mandelbrot Figure";
Size = new System.Drawing.Size(700, 950);
//Messing with the xInput Box and Label
xInput.Location = new Point(50, 50);
xInput.Size = new Size(210, 50);
xInput.Text = ("Please input desired X coordinate.");
Controls.Add(xInput);
xInputLabel.Location = new Point(46, 20);
xInputLabel.Size = new Size(100, 40);
xInputLabel.Text = "Middle X:";
Controls.Add(xInputLabel);
//Messing with the yInput Box and Label
yInput.Location = new Point(320, 50);
yInput.Size = new Size(210, 50);
yInput.Text = ("Please input desired Y coordinate.");
Controls.Add(yInput);
yInputLabel.Location = new Point(316, 20);
yInputLabel.Size = new Size(100, 40);
yInputLabel.Text = "Middle Y:";
Controls.Add(yInputLabel);
//Messing with the maxInput Box and Label
maxInput.Location = new Point(50, 126);
maxInput.Size = new Size(210, 100);
maxInput.Text = ("Please input desired max value.");
Controls.Add(maxInput);
maxInputLabel.Location = new Point(46, 100);
maxInputLabel.Size = new Size(50, 40);
maxInputLabel.Text = "Max:";
Controls.Add(maxInputLabel);
//Messing with the scaleInput Box and Label
scaleInput.Location = new Point(320, 126);
scaleInput.Size = new Size(210, 100);
scaleInput.Text = ("Please input desired scale value.");
Controls.Add(scaleInput);
scaleInputLabel.Location = new Point(316, 100);
scaleInputLabel.Size = new Size(80, 40);
scaleInputLabel.Text = "Scale:";
Controls.Add(scaleInputLabel);
//Messing with the okButton
okButton.Location = new Point(560, 49);
okButton.Size = new Size(100, 100);
okButton.Text = ("Start");
Controls.Add(okButton);
okButton.Click += CalcMandelbrot;
}

//Grabs data and drops it into an array
public void CalcMandelbrot(object sender, EventArgs e)
{
xValue = Convert.ToDouble(xInput.Text);
yValue = Convert.ToDouble(yInput.Text);
maxValue = Convert.ToDouble(maxInput.Text);
scaleValue = Convert.ToDouble(scaleInput.Text);
pixVal = scaleValue * 0.01;
for (double yCounter = 0; yCounter < 400; yCounter++)
{
yCalc = yValue + (200 * pixVal) + (yCounter * pixVal);
for (double xCounter = 0; xCounter < 400; xCounter++)
{
xCalc = xValue - (200 * pixVal) + (xCounter * pixVal);
mArray[Convert.ToInt32(xCounter), Convert.ToInt32(yCounter), 0] = CalcMBF(xCalc, yCalc, maxValue);
Console.WriteLine(xCounter + " " + yCounter + " " + " " + xCalc + " " + yCalc + " " + CalcMBF(xCalc, yCalc, maxValue));
}
}
}

public double CalcMBF(double aOut, double bOut, double maxValue)
{
double aWork = aOut;
double bWork = bOut;
double maxWork = maxValue;
double distanceXY = 0;
int mandelbrotNum = 0;
for (int loopCounter = 1; loopCounter < maxWork; loopCounter++)
{
if (distanceXY <= 2)
{
distanceXY = Math.Sqrt(Math.Pow((aWork), 2) + Math.Pow((bWork), 2));
mandelbrotNum = loopCounter;
aWork = (aWork * aWork) - (bWork * bWork) + xCalc;
bWork = (2 * aWork * bWork) + yCalc;
}
else
{
aWork = 0;
bWork = 0;
break;
}
}
return mandelbrotNum;
}
}
}

最佳答案

它的计算很漂亮。只有你把实例变量和参数搞得一团糟。

CalcMBF ,应该是:

var originala = aWork;
aWork = (aWork * aWork) - (bWork * bWork) + aOut;
bWork = (2 * originala * bWork) + bOut;

你在哪里xCalcyCalc , 这不是 CalcMBF 的本地.此外,虚部需要用 aWork 的初始值计算。有趣的是,它仍然适用于那个错误,但它是一个 different fractal吸引子。

Mandelbrot 集在复平面中有其有趣的区域 -2<=cr<=1 和 -1<=ci<=1,因此在第 2 次迭代中持续不断的 bailout 可以表明您选择的 c 值在外部或在一些无聊的地方,比如湖心。

如果你需要更快的速度,去掉平方根并比较distanceXY <= 4相反。

关于c# - Mandelbrot 程序没有输出正确的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53602027/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com