gpt4 book ai didi

android - 用 "androidPlot"库绘制数学函数

转载 作者:太空狗 更新时间:2023-10-29 14:14:32 24 4
gpt4 key购买 nike

我想用 androidPlot 库绘制像 y=x^2+1 这样的数学函数。我有“SimpleXYPlot”。它有效,但我不知道如何将它从 sin 更改为我的函数。

代码如下:

   public class DynamicXYPlotActivity extends Activity {

// redraws a plot whenever an update is received:
private class MyPlotUpdater implements Observer {
Plot plot;

public MyPlotUpdater(Plot plot) {
this.plot = plot;
}

@Override
public void update(Observable o, Object arg) {
plot.redraw();
}
}

private XYPlot dynamicPlot;
private MyPlotUpdater plotUpdater;
SampleDynamicXYDatasource data;
private Thread myThread;

@Override
public void onCreate(Bundle savedInstanceState) {

// android boilerplate stuff
super.onCreate(savedInstanceState);
setContentView(R.layout.dynamicxyplot_example);

// get handles to our View defined in layout.xml:
dynamicPlot = (XYPlot) findViewById(R.id.dynamicXYPlot);

plotUpdater = new MyPlotUpdater(dynamicPlot);

// only display whole numbers in domain labels
dynamicPlot.getGraphWidget().setDomainValueFormat(new DecimalFormat("0"));

// getInstance and position datasets:
data = new SampleDynamicXYDatasource();
SampleDynamicSeries sine1Series = new SampleDynamicSeries(data, 0, "Sine 1");
SampleDynamicSeries sine2Series = new SampleDynamicSeries(data, 1, "Sine 2");

LineAndPointFormatter formatter1 = new LineAndPointFormatter( Color.rgb(0, 0, 0), null, null, null );
formatter1.getLinePaint().setStrokeJoin(Paint.Join.ROUND);
formatter1.getLinePaint().setStrokeWidth(10);
dynamicPlot.addSeries( sine1Series,formatter1 );

LineAndPointFormatter formatter2 = new LineAndPointFormatter(Color.rgb(0, 0, 200), null, null, null);
formatter2.getLinePaint().setStrokeWidth(10);
formatter2.getLinePaint().setStrokeJoin(Paint.Join.ROUND);

//formatter2.getFillPaint().setAlpha(220);
dynamicPlot.addSeries(sine2Series, formatter2);

// hook up the plotUpdater to the data model:
data.addObserver(plotUpdater);

// thin out domain tick labels so they dont overlap each other:
dynamicPlot.setDomainStepMode(XYStepMode.INCREMENT_BY_VAL);
dynamicPlot.setDomainStepValue(5);

dynamicPlot.setRangeStepMode(XYStepMode.INCREMENT_BY_VAL);
dynamicPlot.setRangeStepValue(10);

dynamicPlot.setRangeValueFormat(new DecimalFormat("###.#"));

// uncomment this line to freeze the range boundaries:
dynamicPlot.setRangeBoundaries(-100, 100, BoundaryMode.FIXED);

// create a dash effect for domain and range grid lines:
DashPathEffect dashFx = new DashPathEffect(
new float[] {PixelUtils.dpToPix(3), PixelUtils.dpToPix(3)}, 0);
dynamicPlot.getGraphWidget().getDomainGridLinePaint().setPathEffect(dashFx);
dynamicPlot.getGraphWidget().getRangeGridLinePaint().setPathEffect(dashFx);
}

@Override
public void onResume() {
// kick off the data generating thread:
myThread = new Thread(data);
myThread.start();
super.onResume();
}

@Override
public void onPause() {
data.stopThread();
super.onPause();
}

class SampleDynamicXYDatasource implements Runnable {

// encapsulates management of the observers watching this datasource for update events:
class MyObservable extends Observable {
@Override
public void notifyObservers() {
setChanged();
super.notifyObservers();
}
}

private static final double FREQUENCY = 5; // larger is lower frequency
private static final int MAX_AMP_SEED = 100; //100
private static final int MIN_AMP_SEED = 10; //10
private static final int AMP_STEP = 1;
public static final int SINE1 = 0;
public static final int SINE2 = 1;
private static final int SAMPLE_SIZE = 30;
private int phase = 0;
private int sinAmp = 1;
private MyObservable notifier;
private boolean keepRunning = false;

{
notifier = new MyObservable();
}

public void stopThread() {
keepRunning = false;
}

//@Override
public void run() {
try {
keepRunning = true;
boolean isRising = true;
while (keepRunning) {

Thread.sleep(100); // decrease or remove to speed up the refresh rate.

phase++;
if (sinAmp >= MAX_AMP_SEED) {
isRising = false;
} else if (sinAmp <= MIN_AMP_SEED) {
isRising = true;
}

if (isRising) {
sinAmp += AMP_STEP;
} else {
sinAmp -= AMP_STEP;
}
notifier.notifyObservers();
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}


public int getItemCount(int series) {
return SAMPLE_SIZE;
}

public Number getX(int series, int index) {
if (index >= SAMPLE_SIZE) {
throw new IllegalArgumentException();
}
return index;
}

public Number getY(int series, int index) {
if (index >= SAMPLE_SIZE) {
throw new IllegalArgumentException();
}
double angle = (index + (phase))/FREQUENCY;
double amp = sinAmp * Math.sin(angle);
switch (series) {
case SINE1:
return amp;
case SINE2:
return -amp;
default:
throw new IllegalArgumentException();
}
}

public void addObserver(Observer observer) {
notifier.addObserver(observer);
}

public void removeObserver(Observer observer) {
notifier.deleteObserver(observer);
}

}

class SampleDynamicSeries implements XYSeries {
private SampleDynamicXYDatasource datasource;
private int seriesIndex;
private String title;

public SampleDynamicSeries(SampleDynamicXYDatasource datasource, int seriesIndex, String title) {
this.datasource = datasource;
this.seriesIndex = seriesIndex;
this.title = title;
}

@Override
public String getTitle() {
return title;
}

@Override
public int size() {
return datasource.getItemCount(seriesIndex);
}

@Override
public Number getX(int index) {
return datasource.getX(seriesIndex, index);
}

@Override
public Number getY(int index) {
return datasource.getY(seriesIndex, index);
}
}
}

============================================= ========

在“Nick”所说的和其他一些小的补充之后,我得到了这个结果:

Result

但据我们所知:

https://www.google.com/search?q=y%3Dx%5E2%2B1&oq=y%3Dx%5E2%2B1&aqs=chrome..69i57j0l5.7056j0j7&sourceid=chrome&es_sm=93&ie=UTF-8

现在如何制作左侧?

最佳答案

使用上面的代码可以修改SampleDynamicXYDatasource来做你想做的。这些代码所做的只是生成一些正弦模式的数据。我不知道你的 x 值是如何生成的,所以这里有一个修改过的 SampleDynamicXYDatasource.getY(...) 它只使用上面 x=index 的原始代码并使用你的函数生成y 值:

        public Number getY(int series, int index) {
if (index >= SAMPLE_SIZE) {
throw new IllegalArgumentException();
}
Number x = getX(series, index);
double y = Math.pow(x.doubleValue(), 2) + 1;
switch (series) {
case SINE1:
return y;
case SINE2:
return -y;
default:
throw new IllegalArgumentException();
}
}

您会注意到,当您进行此更改时,情节似乎不再是动画的。 (它实际上仍然是,但除此之外)这是因为 y 现在纯粹是 x 的函数并且 x 值永远不会改变。

至于如何停止动画,只要调用 plot.redraw() 就会重绘绘图,在上面的示例中,这是响应由在 Runnable 实例上运行的线程生成的事件连续触发的事件SampleDynamicXYDatasource 的。使用上面的示例,停止动画的最简单方法是替换:

@Override
public void onResume() {
// kick off the data generating thread:
myThread = new Thread(data);
myThread.start();
super.onResume();
}

与:

@Override
public void onResume() {
dynamicPlot.redraw();
super.onResume();
}

关于android - 用 "androidPlot"库绘制数学函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23738008/

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