Single-Chip16-PortSerDesGigabitSwitch16-port10/100/1000Mbpsintegratedswitchcontrollervia1.25GSerDes/SGMII/fiber•Embedded256KBon-chippacketbuffer•One10/100/1000MbpsIn-bandManagementPort(IMP)withGMII/RGMII/RvMII/MIIinterfaceforPHY-lessconnectiontoaCPU/managemententity(formanagementpurposesonly)•Integratedaddressmanagement•Supportsupto4KMACaddresses•Supportsjumboframesupto9728bytes.•SupportsEEPROMforlow-costchipconfiguration•IntegratedMotorola®SPI-compatibleinterface•Supportsportmirroring•Port-basedVLANand4KIEEE802.1QtagVLAN•Port-,DiffServ-,MAC-,andIEEE802.1p-basedQoSforfourqueues•SupportsSpanningTree,RapidSpanningTree,andMultipleSpanningTreeprotocols(802.1D/1s/1w)•SupportsIEEEStandard802.1Xportsecurity•Supportspseudo-PHYMDIOaccess•MAC-basedtrunkingwithlinkfail-over•Ethernet-in-the-last-mile(EFM)support:OAMandP•Low-power(2.2Wtotal)1.2Vcore/2.5V(SGMIII/O)/3.3V(GMII/MII/RvMII)and2.5VRGMIIoperationwith3.3VI/Otolerance•256-pinFBGApackage
2024/9/13 6:04:14 2.85MB BCM5396 数据手册
1
pci_power_managment_interface_specification_.2.pdf
2024/8/31 6:29:46 422KB pci-e
1
总共包含7页,详细内容如下。
可供学习参考维修改造。
PAGE1-CONTENTSPAGE2-POWER,XOSCPAGE3-CSI,DSI,JTAGPAGE4-SD,HDMI,GPIO,A/VPAGE5-USB,ETHERNETPAGE6-LPDDR2PAGE7-WIFI,BLUETOOTH
1
用C语言实现了高斯白噪声数据的产生Routinemrandom:Togeneratetherandomnumber(pseudo-whitenoise).inputParameters:n:therandomdatanumberrequested;integer.iseed:theseedforpseudo-randomdatageneration.itmustbeinitializedbymainprogram(suggestedvalueisISEED=12357),andtherandomnumberiscycled,thecyclelength=1,048,576itype:randomdatadistributiontype,seebelow:itype=1:Uniformdistributed,from0.0to1.0itype=2:Uniformdistributed,Mean=0.0,Variance(方差)(Power)p=1.0itype=3:Uniformdistributed,Mean=0.0,Variance(Power)p=p.itype=4:Gaussiandistributed,Mean=0.0,Variance(Power)p=1.0itype=5:Gaussiandistributed,Mean=0.0,Variance(Power)p=p.p:variance(Power)ofrandom,onlyusedwhenitype=3oritype=5.outparameters:u:ndimensionedrealarray,dataisstoredinu(0)tou(n-1).inChapter1
2024/5/19 6:17:19 8KB 高斯白噪声 C语言
1
%用遗传算法进行简单函数的优化clearbn=22;%个体串长度inn=50;%初始种群大小gnmax=200;%最大代数pc=0.75;%交叉概率pm=0.05;%变异概率%产生初始种群s=round(rand(inn,bn));%计算适应度,返回适应度f和累积概率p[f,p]=objf(s);gn=1;whilegn<gnmax+1forj=1:2:inn%选择操作seln=sel(s,p);%交叉操作scro=cro(s,seln,pc);scnew(j,:)=scro(1,:);scnew(j+1,:)=scro(2,:);%变异操作smnew(j,:)=mut(scnew(j,:),pm);smnew(j+1,:)=mut(scnew(j+1,:),pm);ends=smnew;%产生了新的种群%计算新种群的适应度[f,p]=objf(s);%记录当前代最好和平均的适应度[fmax,nmax]=max(f);fmean=mean(f);ymax(gn)=fmax;ymean(gn)=fmean;%记录当前代的最佳个体x=n2to10(s(nmax,:));xx=-1.0+x*3/(power(2,bn)-1);xmax(gn)=xx;gn=gn+1endgn=gn-1;%绘制曲线subplot(2,1,1);plot(1:gn,[ymax;ymean]);title('历代适应度变化','fonts',10);legend('最大适应度','平均适应度');string1=['最终适应度',num2str(ymax(gn))];gtext(string1);subplot(2,1,2);plot(1:gn,xmax,'r-');legend('自变量');string2=['最终自变量',num2str(xmax(gn))];gtext(string2);
2024/5/9 7:19:44 106KB 遗传算法
1
GT-POWER培训
2024/4/21 4:57:37 1.68MB 仿真
1
Idealforgraduateandseniorundergraduatecoursesincomputerarithmeticandadvanceddigitaldesign,ComputerArithmetic:AlgorithmsandHardwareDesigns,SecondEdition,providesabalanced,comprehensivetreatmentofcomputerarithmetic.Itcoverstopicsinarithmeticunitdesignandcircuitimplementationthatcomplementthearchitecturalandalgorithmicspeeduptechniquesusedinhigh-performancecomputerarchitectureandparallelprocessing.Usingaunifiedandconsistentframework,thetextbeginswithnumberrepresentationandproceedsthroughbasicarithmeticoperations,floating-pointarithmetic,andfunctionevaluationmethods.Laterchapterscoverbroaddesignandimplementationtopics-includingtechniquesforhigh-throughput,low-power,fault-tolerant,andreconfigurablearithmetic.Anappendixprovidesahistoricalviewofthefieldandspeculatesonitsfuture.Anindispensableresourceforinstruction,professionaldevelopment,andresearch,ComputerArithmetic:AlgorithmsandHardwareDesigns,SecondEdition,combinesbroadcoverageoftheunderlyingtheoriesofcomputerarithmeticwithnumerousexamplesofpracticaldesigns,worked-outexamples,andalargecollectionofmeaningfulproblems.Thissecondeditionincludesanewchapteronreconfigurablearithmetic,inordertoaddressthefactthatarithmeticfunctionsareincreasinglybeingimplementedonfield-programmablegatearrays(FPGAs)andFPGA-likeconfigurabledevices.Updatedandthoroughlyrevised,thebookoffersnewandexpandedcoverageofsaturatingaddersandmultipliers,truncatedmultipliers,fusedmultiply-addunits,overlappedquotientdigitselection,bipartiteandmultipartitetables,reversiblelogic,dotnotation,modulararithmetic,Montgomerymodularreduction,divisionbyconstants,IEEEfloating-pointstandardformats,andintervalarithmetic.Features:*Dividedinto28lecture-sizechapters*Emphasizesboththeunderlyingtheoriesofcomputerarithmeticandactua
2024/3/24 20:18:29 8.14MB Computer Arithmetic Algorithms
1
三星samsungS3C2410原理图SCH格式的,包含CPU,Flash,Jtag,Power,SDRAM,USB,UART等。
2023/12/8 9:49:33 38KB S3C2410 原理图 SCH
1
LibNoise分形噪声函数库的JAVA翻译版,个人开发,仅供参考。
包中包含:异常模块:noise.Exceptionnoise.ExceptionInvalidParam无效的参数异常。
noise.ExceptionNoModule无模块异常,无法检索到该源模块noise.ExceptionOutOfMemorynoise.ExceptionUnknown模型模块:noise.model.Line线noise.model.Plane平面noise.model.Sphere球体noise.model.Cylinder圆柱发生器模块:noise.module.Perlin培林噪声 noise.module.RidgedMulti脊多重分形噪声noise.module.Billow巨浪 value=|perlin_value|*2-1.0;noise.module.Voronoi细胞噪声,Voronoi图noise.module.Const常量 value=const;noise.module.Cylinders圆柱noise.module.Checkerboard棋盘格 value=(floor(x)&1^floor(y)&1^floor(z)&1)!=0?-1.0:1.0;noise.module.Spheres球体选择器模块:noise.module.Select选择noise.module.Blend混合 value=((1.0-(modules[3].value+1)/2)*modules[0].value)+((modules[3].value+1)/2*modules[1].value);修饰器模块:noise.module.Invert倒置 value=-value;noise.module.Abs绝对值 value=|value|;noise.module.Clamp截取 value=(valueupperBound?upperBound:value);lowerBound:下截取值;upperBound:上截取值noise.module.Curve曲线 value=noise.module.Curve.ControlPoint控制点noise.module.ScaleBias偏移缩放, value=value*scale+offsetnoise.module.Turbulence湍流 value=modules[0].getValue(x+modules[1].value*power,y+modules[2].value*power,z+modules[3].value*power);noise.module.Exponent指数 value=(pow(abs((value+1.0)/2.0),exponent)*2.0-1.0);组合模块:noise.module.Add添加 value=modules[0].value+modules[1].value;noise.module.Max最大值 value=max(value);noise.module.Min最小值 value=min(value);noise.module.Multiply乘法 value=modules[0].value*modules[1].value;noise.module.Power权重 value=pow(modules[0].value,modules[1].value);变压模块:noise.module.Displace位移替换,扭曲value=modules[0].getValue(x+modules[1].value,y+modules[2].value,z+modules[3].value);noise.module.RotatePoint点旋转noise.module.ScalePoint点缩放,轴缩放 value=modules[0].getValue(x*xScale,y*yScale,z*zScale);noise.module.Terrace露台,梯台noise.mod
2023/7/8 13:24:28 53KB java 噪声 分形 地形
1
Introduction Few phenomena characterize our time more uniquely and powerfully than the rapid rise and influence of information technologies. These technologies have unleashed a tsunami of data that rolls over and flattens us in its wake. Taming this beast has become a primary goal of the information industry. One tool that has emerged from this effort in recent years is the information dashboard. This single‐screen display of the most important information people need to do a job, presented in a way that allows them to monitor what's going on in an instant, is a powerful new medium of co妹妹unication. At least it can be, but only when properly designed. Most information dashboards that are used in business today fall far short of their potential. The root of the problem is not technologyat least not primarilybut poor visual design. To serve their purpose and fulfill their potential, dashboards must display a dense array of information in a small amount of space in a manner that co妹妹unicates clearly and i妹妹ediately. This requires design that taps into and leverages the power of visual perception to sense and process large chunks of information rapidly. This can be achieved only when the visual design of dashboards is central to the development process and is informed by a solid understanding of visual perceptionwhat works, what doesn't, and why. No technology can do this for you. You must bring this expertise to the process. Take heartthe visual design skills that you need to develop effective dashboards can be learned, and helping you learn them is the sole purpose of this book. If the information is important, it deserves to be co妹妹unicated well.
2023/5/11 11:47:20 8.25MB Dashboard Design Visual
1
共 26 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡