登录
首页 » 算法 » 计算机图形计算:点乘 英文网页 没代码,更适合于理解其原理和方法和运用...

计算机图形计算:点乘 英文网页 没代码,更适合于理解其原理和方法和运用...

于 2022-02-20 发布 文件大小:6.05 kB
0 123
下载积分: 2 下载次数: 1

代码说明:

计算机图形计算:点乘 英文网页 没代码,更适合于理解其原理和方法和运用-computer graphic terms : point by the English website no code, is more suited to understand the principles and methods of use and

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 通过使用MEM 系数进行线性预测的数值
    通过使用MEM 系数进行线性预测的数值算法-through the use of MEM coefficient of linear prediction algorithm
    2022-02-24 17:08:41下载
    积分:1
  • Anderson CFD 第七章Fortran程序
    针对Anderson教材第七章相关章节(7.3&7.4)书写的Fortran程序,和书本上的结果进行了对比,程序运行正确。使用最新的Fortran语法书写,方便阅读;
    2022-10-25 17:25:03下载
    积分:1
  • two polynomial is the Euclid algorithm, namely polynomial for the two majors.
    就是两个多项式的欧几里得算法,即求两个多项式的最大公约数。-two polynomial is the Euclid algorithm, namely polynomial for the two majors.
    2022-12-24 12:30:04下载
    积分:1
  • 北大ACM试题poj 第3065题源码,很好的代码,希望对搞ACM的同学有帮助...
    北大ACM试题poj 第3065题源码,很好的代码,希望对搞ACM的同学有帮助 -Peking University ACM Chapter 3065 question Question poj source code, good code, and want to help students engage in ACM
    2022-03-21 07:07:50下载
    积分:1
  • 求解旅行商问题的遗传
    遗传算法求解tsp问题,采用遗传算法,比其他的算法更容易解决tsp- GA to solve the tsp problem
    2022-02-06 00:52:14下载
    积分:1
  • webrtc中提取的AEC库
    webrtc中提取的AEC库,从webrtc开源项目中提取,可以使用,可以作为学习之用,现在关于开源aec算法的 代码少,这个确实还不错
    2022-02-09 14:38:11下载
    积分:1
  • 基于C的贪吃蛇
    基于C的贪吃蛇小游戏初始化蛇的图形后,用死循环使游戏进行,每次循环都检测键盘输入,如果有输入,则根据键盘的有效输入和to()改变蛇的下一步方向,否则让蛇以当前方向移动,每次移动需要使用showsnack()函数重新画出蛇,并判断游戏是否结束,还要循环更新时间、分数等信息,当函数返回0时,游戏程序退出。
    2022-04-29 13:06:30下载
    积分:1
  • 小游戏“神奇翻转”
    也称“点灯游戏”。9×9的矩阵中,每选择一个元素,它与其上下左右共5个元素都会由1变为0、或是由0变为1。将所有元素变为1则胜利。本源码使用命令行界面实现这一功能,一方面支持用户手动操作游玩,另一方面给出了算法来自动解决这一问题。
    2023-05-20 19:20:03下载
    积分:1
  • 一个求解Josephus问题的函数
      #include #include #define NULL 0 #include typedef struct Lnode {  int data;  struct Lnode *next; }Josephus; void CreateList(Josephus*&L,int n)//建立循环链表 {  int i;  Josephus *p,*s;  s=(Josephus*)malloc(sizeof(Josephus));  s->data=1;  L=p=s;  for(i=2;idata=i;  p->next=s;  p=s;  }  p->next=L; } void DeleteList(Josephus*&L,Josephus*p,Josephus*q) {  q->next=p->next;  free(p); } void Josephus1(Josephus*&L,int s,int m)
    2022-01-27 23:12:59下载
    积分:1
  • A program to demonstrate the optimization process of ant colony optimization for...
    A program to demonstrate the optimization process of ant colony optimization for the traveling saleman problem (TSP). The cities are shown as red circles, the pheromone on the connections between them (fully connected graph) by gray lines. The darker the grey, the more pheromone is currently on the edge. During the optimization, the currently best found tour is drawn in red. To run the optimization, first create a random TSP, then create an ant colony, and finally run the optimization.
    2022-02-19 22:51:42下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载