JOANNA JIANG

Matlab学习

两层前馈网络的实现

clear all; x=[0 1 2 3 4 5 6 7 8]; t=[0 0.84 0.91 0.14 – […]

Be the First to comment. Read More
Matlab学习

我的第一个Matlab神经网络小程序

实现了一个二维向量的感知网络: clear all; net=newp([-2,2;-2,2],1); net […]

Be the First to comment. Read More
Python学习

九度题目1198:a+b (高精度加法)

题目描述: 实现一个加法器,使其能够输出a+b的值。 输入: 输入包括两个数a和b,其中a和b的位数不超过10 […]

Be the First to comment. Read More
Python学习

九度题目1443:Tr A

题目描述: A为一个方阵,则Tr A表示A的迹(就是主对角线上各项的和),现要求Tr(A^k)%9973。 输 […]

Be the First to comment. Read More