本人最近在写一篇关于神经网络同步的文章,其一部分模型为:

x_i^{\Delta}(t)= -a_i*x_i(t)+ b_i* f(x_i(t))+ \sum\limits_{j \in\{i-1, i+1\}}c_{ij}f(x_j(t-\tau_{ij})), t\in\mathbb{R}    (1.1)

y_i^{\Delta}(t)= -a_i*y_i(t)+ b_i* f(y_i(t))+ \sum\limits_{j \in\{i-1, i+1\}}c_{ij}f(y_j(t-\tau_{ij})), t\in\mathbb{R}    (1.2)

下面利用python求(1.1)-(1.2)的数值解并作出图形:

  1. # Numerical simulation for 3-rd paper
  2. # Author: Qiang Xiao
  3. # Time: 2015-06-22
  4.  
  5. import matplotlib.pyplot as plt
  6. import numpy as np
  7.  
  8. a= 0.5
  9. b= -0.5
  10. c= 0.5
  11. tau= 1
  12. k= 2
  13. delta= 0.1
  14. T= 200
  15. row= 6
  16. col= int(T/delta)
  17. N= 6
  18.  
  19. x= np.zeros((row, col))
  20. dx= np.zeros((row, col))
  21. y= np.zeros((row, col))
  22. dy= np.zeros((row, col))
  23.  
  24. x0= [5,2,1,0,1,4]
  25. y0= [-5,2,-3,-2,0,-3]
  26. for i in range(N):
  27. x[i,0:int(tau/delta)+ 1]= x0[i]
  28. y[i,0:int(tau/delta)+ 1]= y0[i]
  29.  
  30. print np.e
  31.  
  32. def f(t):
  33. return np.cos(t)
  34.  
  35. def j(i):
  36. if i== 0:
  37.   return 1, 5
  38. elif i== 5:
  39.   return 4, 0
  40. else:
  41.    return i-1, i+1
  42.  
  43. for time in range(int(tau/delta),int(T/delta)-1):
  44. for i in range(6):
  45.   dx[i, time]= -a* x[i, time]+ b*f(x[i, time])+ c*f(x[int(j(i)[0]), time- 10])+ c*f(x[int(j(i)[1]), time- 10])
  46.   dy[i, time]= -a* y[i, time]+ b*f(y[i, time])+ c*f(y[int(j(i)[0]), time- 10])+ c*f(y[int(j(i)[1]), time- 10])+ k*(x[i, time]- y[i, time])
  47. x[i, time+1]= x[i, time]+ delta*dx[i, time]
  48. y[i, time+1]= y[i, time]+ delta*dy[i, time]
  49.  
  50. tt= np.arange(tau,T,delta)
  51. print len(tt)
  52.  
  53. plt.plot(tt,x[0,10:int(T/delta)],'c')
  54. plt.plot(tt,y[0,10:int(T/delta)],'c.')
  55. plt.plot(tt,x[1,10:int(T/delta)],'r.')
  56. plt.plot(tt,y[1,10:int(T/delta)],'r')
  57. plt.plot(tt,x[2,10:int(T/delta)],'b')
  58. plt.plot(tt,y[2,10:int(T/delta)],'b.')
  59. plt.plot(tt,x[3,10:int(T/delta)],'k')
  60. plt.plot(tt,y[3,10:int(T/delta)],'k.')
  61. plt.plot(tt,x[4,10:int(T/delta)],'m')
  62. plt.plot(tt,y[4,10:int(T/delta)],'m.')
  63. plt.plot(tt,x[5,10:int(T/delta)],'y')
  64. plt.plot(tt,y[5,10:int(T/delta)],'y.')
  65.  
  66. plt.xlabel('Time t')
  67. plt.ylabel('xi(t) and yi(t)')
  68. plt.legend(('x1','y1','x2','y2','x3','y3','x4','y4','x5','y5','x6','y6'))
  69. plt.show()

由上图可以看出,网络单元x_i(t) 与 y_i(t) 分别达成了同步。

欢迎交流!

python求微分方程组的数值解曲线01的更多相关文章

  1. Python小白的数学建模课-05.0-1规划

    0-1 规划不仅是数模竞赛中的常见题型,也具有重要的现实意义. 双十一促销中网购平台要求二选一,就是互斥的决策问题,可以用 0-1规划建模. 小白学习 0-1 规划,首先要学会识别 0-1规划,学习将 ...

  2. 使用python求字符串或文件的MD5

    使用python求字符串或文件的MD5 五月 21st, 2008 #以下可在python3000运行. #字符串md5,用你的字符串代替'字符串'中的内容. import hashlib md5=h ...

  3. Python 求点到直线的垂足

    Python 求点到直线的垂足 在已知一个点,和一条已知两个点的直线的情况下 运算公式参考链接:https://www.cnblogs.com/mazhenyu/p/3508735.html def ...

  4. python求100以内素数

    python求100以内素数之和 from math import sqrt # 使用isPrime函数 def isPrime(n): if n <= 1: return False for ...

  5. MATLAB求微分

    求微分 diff(函数) , 求的一阶导数;diff(函数, n) , 求的n阶导数(n是具体整数);diff(函数,变量名), 求对的偏导数;diff(函数, 变量名,n) ,求对的n阶偏导数; & ...

  6. Python 求两个文本文件以行为单位的交集 并集 差集

    Python 求两个文本文件以行为单位的交集 并集 差集,来代码: s1 = set(open('a.txt','r').readlines()) s2 = set(open('b.txt','r') ...

  7. python求极值点(波峰波谷)

    python求极值点主要用到scipy库. 1. 首先可先选择一个函数或者拟合一个函数,这里选择拟合数据:np.polyfit import pandas as pd import matplotli ...

  8. Python求一个数字列表的元素总和

    Python求一个数字列表的元素总和.练手: 第一种方法,直接sum(list): 1 lst = list(range(1,11)) #创建一个1-10的数字列表 2 total = 0 #初始化总 ...

  9. python求线性回归斜率

    一. 先说我对这个题目的理解 直线的x,y方程是这样的:y = kx+b, k就是斜率. 求线性回归斜率, 就是说 有这么一组(x, y)的对应值——样本.如果有四组,就说样本量是4.根据这些样本,做 ...

随机推荐

  1. c++ primer plus 习题答案(4)

    p333.3 #include<iostream> #include<cstdlib> #include<cstring> #include<string&g ...

  2. 10条PHP编程习惯

    过去的几周对我来说是一段相当复杂的经历.我们公司进行了大裁员,我是其中之一,但却体验到了其中的乐 趣.我从来没有被开除过,所以很难不去想得太多.我开始浏览招聘板块,一个全职PHP程序员的职位很吸引人, ...

  3. HDU 1997 汉诺塔VII

    题解参考博客: http://blog.csdn.net/hjd_love_zzt/article/details/9897281 #include <cstdio> ],yes; int ...

  4. 运行于64操作系统上的C#客户端通过WCF访问Oracle数据库不兼容问题

    运行平台: Windows 7  64位操作系统 运行环境: IIS 7 编程语言:C# 数据库: 32位的Oracle 10g 运行原因:64位操作系统C#客户端程序通过WCF访问ORACLE数据库 ...

  5. In Action(最短路+01背包)

    In Action Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total S ...

  6. Objective-c 数据类型

    这里列出Objective-c中独有数据类型: 一.字符串 在Objective-c中,字符串常量是由@和一对从引号括起的字符串序列.比如:@"China".@"obje ...

  7. 下载xcode 6 beta.dmg

    太大.无法上传到csdn上,百度网盘下载 http://pan.baidu.com/s/1eQtcV7c

  8. Spring技术内幕:Spring AOP的实现原理(一)

    一.SpringAOP的概述 1.AOP概念 AOP是Aspect-Oriented Programming(面向切面编程)的简称.维基百科的解释例如以下: Aspect是一种新的模块化机制,用来描写 ...

  9. JS中window.document对象

    小知识点注:外面双引号,里面的双引号改为单引号:                  在div里面行高设置和整个外面高度一样,才能用竖直居中,居中是行居中                  文本框取出来 ...

  10. C++之对象组合

    #include<stdio.h>//初始化列表 提供了对成员变量初始化的方式//Constructor        class M      {       private:      ...