随笔分类 -  数学

Mandelbrot Set Visualization
摘要:Bit Draw Solution 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <math.h> 5 #include <complex.h> 6 #include <stdbool.h> 7 阅读全文

posted @ 2022-08-25 23:33 acd407 阅读(17) 评论(0) 推荐(0) 编辑

Color Map
摘要:Source 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #include <math.h> 5 6 #define XLEN 1024 7 #define YLEN 1024 8 9 int main() 1 阅读全文

posted @ 2022-08-25 10:35 acd407 阅读(10) 评论(0) 推荐(0) 编辑

Logistic Map
摘要:Source Link 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <math.h> 4 5 #define X 2560 //尽量为8的倍数,若不是X/8需向上取整 6 #define Y 1600 //推荐X、Y比例为(4.0-2. 阅读全文

posted @ 2022-08-21 12:56 acd407 阅读(86) 评论(0) 推荐(0) 编辑

function plotter
摘要:1 #include <stdio.h> 2 #include <math.h> 3 #include <stdlib.h> 4 #include <stdbool.h> 5 #define max(x, y) ((x)>(y)?(x):(y)) 6 7 #define XDIM 1024 //此项 阅读全文

posted @ 2022-08-17 17:57 acd407 阅读(377) 评论(0) 推荐(0) 编辑

C++行列式操作
摘要:1 #include <iostream> 2 #include <fstream> 3 using namespace std; 4 5 class DETERMINANT 6 { 7 public: 8 void InitializeSize(int order); 9 void Remove( 阅读全文

posted @ 2021-10-06 23:10 acd407 阅读(150) 评论(0) 推荐(0) 编辑

求行列式的值
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 int main(int argc, char **argv) 4 { 5 if(2!=argc) 6 { 7 puts("Arguments Error!"); 8 exit(-1); 9 } 10 FILE 阅读全文

posted @ 2021-10-04 10:21 acd407 阅读(222) 评论(0) 推荐(0) 编辑

映射
摘要:映射定义 对于集合X,Y,若在对应法则f下,X中任一元素x,都可以找到Y中唯一的y与之对应,那么将f称作X到Y的映射. 记作 f:x→y . 其中y(即f(x)),叫做x在f下的像,x称作y在f下的原像. X是定义域,Y是值域. 单射 设f:x→y,如对任意的X中的不同元素x1,x2都有f(x1)= 阅读全文

posted @ 2021-08-11 18:42 acd407 阅读(677) 评论(0) 推荐(0) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示