IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 嵌入式 -> 线性最小二乘法 c语言实现 -> 正文阅读

[嵌入式]线性最小二乘法 c语言实现

公式用的出自https://blog.csdn.net/hezhefly/article/details/79517684?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-5.no_search_link&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-5.no_search_linkicon-default.png?t=L9C2https://blog.csdn.net/hezhefly/article/details/79517684?utm_medium=distribute.pc_relevant.none-task-blog-2~default~BlogCommendFromBaidu~default-5.no_search_link&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2~default~BlogCommendFromBaidu~default-5.no_search_link

直接贴代码? 这是 linearLeastSquares.h

#ifndef LINEARLEASTSQUARES_H
#define LINEARLEASTSQUARES_H


typedef struct Sample{
    float x;
    float y;
} Sample;

typedef struct NodeOfInput{
    Sample data;
    struct NodeOfInput* next;
} NodeOfInput;





//y=ax+b;
typedef struct OutPut{
    float a;
    float b;
} OutPut;



OutPut getCoefficientOfLinearEquation(NodeOfInput* headOfChainList);
void initChainList(NodeOfInput** headOfChainList);
void addNewNodeToChain(NodeOfInput* headOfChainList,Sample data);

#endif // LINEARLEASTSQUARES_H

这是?linearLeastSquares.c

#include "linearLeastSquares.h"
#include <string.h>
#include <stdlib.h>
unsigned int getTheSumAndAverageSampleOfNodeInChainList(NodeOfInput* headOfChainList,\
                                                        Sample* averageSample);
float getCoefficientA( NodeOfInput* headOfChainList,unsigned int sumOfNodes, Sample* sample);
float getCoefficientB(unsigned int sumOfNodes,float coefficientOfA,Sample* sample );

OutPut getCoefficientOfLinearEquation(NodeOfInput* headOfChainList)
{
    OutPut outcome={0,0};
    unsigned int sumOfNodes = 0;

    Sample averageSample={0,0};
    sumOfNodes = getTheSumAndAverageSampleOfNodeInChainList(headOfChainList,\
                                                            &averageSample);
    outcome.a = getCoefficientA( headOfChainList,sumOfNodes, &averageSample);
    outcome.b = getCoefficientB(sumOfNodes,outcome.a,&averageSample );
    return outcome;

}


void initChainList(NodeOfInput** headOfChainList)
{
    *headOfChainList =  (NodeOfInput*)malloc(sizeof (NodeOfInput));
    memset(*headOfChainList,0,sizeof (NodeOfInput));
    (*headOfChainList)->next = *headOfChainList;
    return;
}

void addNewNodeToChain(NodeOfInput* headOfChainList,Sample data)
{
    NodeOfInput* newNode =  (NodeOfInput*)malloc(sizeof (NodeOfInput));
    memset(newNode,0,sizeof (NodeOfInput));
    newNode->data = data;

    newNode->next           = headOfChainList->next;
    headOfChainList->next   = newNode;
    return;


}


unsigned int getTheSumAndAverageSampleOfNodeInChainList(NodeOfInput* headOfChainList,\
                                                        Sample* averageSample)
{
    unsigned int count = 0;
    float sumOfX=0,sumOfY=0;
    NodeOfInput* current = headOfChainList->next;
    while(current   != headOfChainList )
    {
        sumOfX += current->data.x;
        sumOfY += current->data.y;
        count++;
        current =   current->next;
    }
    averageSample->x = sumOfX/(float)count;
    averageSample->y = sumOfY/(float)count;

    return count;
}


float getCoefficientA( NodeOfInput* headOfChainList,unsigned int sumOfNodes, Sample* sample)
{
    NodeOfInput* current = headOfChainList->next;
    float alpha =0,beta =0;;
    while(current   != headOfChainList )
    {
        alpha   +=   (current->data.x - sample->x)*(current->data.y - sample->y);
        beta    +=   (current->data.x - sample->x)*(current->data.x - sample->x);
        current =   current->next;
    }

    return alpha/beta;

}

float getCoefficientB(unsigned int sumOfNodes,float coefficientOfA,Sample* sample )
{
    return sample->y - sample->x*coefficientOfA;
}

这是main.c

#include <stdio.h>
#include "linearLeastSquares.h"










int main()
{
    NodeOfInput* headOfChainList =NULL;
    OutPut outcome;
    initChainList(&headOfChainList);
    int flag = 0;
    Sample data;
    while(1)
    {
        printf("if input?\n");
        scanf("%d",&flag);
        if(flag==0) break;
        printf("please input\n");
        scanf("%f %f",&(data.x),&(data.y));
        addNewNodeToChain(headOfChainList,data);
    }

    outcome = getCoefficientOfLinearEquation( headOfChainList);
    printf("a:%f  b:%f \n",outcome.a,outcome.b);
    return 0;
}

  嵌入式 最新文章
基于高精度单片机开发红外测温仪方案
89C51单片机与DAC0832
基于51单片机宠物自动投料喂食器控制系统仿
《痞子衡嵌入式半月刊》 第 68 期
多思计组实验实验七 简单模型机实验
CSC7720
启明智显分享| ESP32学习笔记参考--PWM(脉冲
STM32初探
STM32 总结
【STM32】CubeMX例程四---定时器中断(附工
上一篇文章      下一篇文章      查看所有文章
加:2021-10-19 12:03:02  更:2021-10-19 12:03:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 6:27:54-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码