⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testexpand.java

📁 JAVA 数学程序库 提供常规的数值计算程序包
💻 JAVA
字号:
package jmathlibtests.toolbox.symbolic;

import jmathlib.core.interpreter.Interpreter;
import jmathlib.tools.junit.framework.*;

public class testExpand extends TestCase {
	protected Interpreter ml;
	
    public testExpand(String name) {
		super(name);
	}
	public static void main (String[] args) {
		jmathlib.tools.junit.textui.TestRunner.run (suite());
	}
	protected void setUp() {
		ml = new Interpreter(true);
        
        //set up symbols
        ml.executeExpression("x=sym('x')");
        ml.executeExpression("y=sym('y')");        
	}

	public static Test suite() {
		return new TestSuite(testExpand.class);
	}


    public void testExpand1() {
        String input = "expand((x+1)^2)";
        String output = "x^2+2x+1";
        output = reduce(output);

        ml.executeExpression(input);
        String result = ml.getResult();
        result = reduce(result);
       
        assertEquals(output, result);
    }

    public void testExpand2() {
        String input = "expand((x+y)^2)";
        String output = "2x*y+x^2+y^2";
        
        output = reduce(output);
        
        ml.executeExpression(input);
        String result = ml.getResult();
        result = reduce(result);
       
        assertEquals(output, result);
    }

    public void testExpand3() {
        String input = "expand((x+1) * (x-1))";
        String output = "x^2+-1";
        output = reduce(output);

        ml.executeExpression(input);
        String result = ml.getResult();
        result = reduce(result);
       
        assertEquals(output, result);
    }
    
    private String reduce(String input)
    {
        StringBuffer buffer = new StringBuffer();
        
        int length = input.length();
        for(int index = 0; index < length; index++)
        {
            char character = input.charAt(index);
            if(character != ' ' && character != '(' && character != ')')
            {
                buffer.append(character);
            }
        }
        
        return buffer.toString();
    }   
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -