多个坐标点拟合平面方程(Java)

多个坐标点拟合平面方程

计算功能如视频如示,Demo在置顶的资源包里。

本方法用Java语言编写。需要用到依赖

    implementation 'androidx.recyclerview:recyclerview:1.3.0'
    
    // https://mvnrepository.com/artifact/com.alibaba/easyexcel
    implementation group: 'com.alibaba', name: 'easyexcel', version: '3.3.2'//只支持HSSF
    // https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-core
    implementation(group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.22.0') {
        exclude group: 'org.apache.logging.log4j', module: 'log4j-api'
        exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
        exclude group: 'org.slf4j', module: 'slf4j-api'
    }
    // https://mvnrepository.com/artifact/org.apache.commons/commons-math3
    implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'

里面包括了SQLite的增删查改,Excel的导入、导出、文件及文件夹的读取等许多实用小功能。还包括一些界面优化——你值得拥有。

你可能感兴趣的:(android,studio,java)