function[CellSpace_nextstepVehicleSpace]=TrafficSimulating(SimTime,TimeStep,CellSpace_current,CellSpace_nextstep,VehicleSpace,VMAX)%TRAFFICSIMULATINGSummaryofthisfunctiongoeshere%仿真程序主体CellSpace_Init=CellSpace_nextstep;%读取信号配时数据SignalCycleMat=load('SignalCycleInfo.ini');sCycle=SignalCycleMat(1);%周期长度sGreenTime=SignalCycleMat(2);%绿灯时长sRedTime=SignalCycleMat(3);%红灯时长%%是否加载换道模型LaneChangingModelINIMat=load('LaneChangingModeInfo.ini');UseLaneChangingModelFlag=LaneChangingModelINIMat(1);end
2024/6/20 7:51:30 2KB 元胞自动机 交通
1
音箱设计专业软件,设计音箱必备,音箱设计辅助软件,人人成为音箱设计高手。
2024/6/16 13:44:07 19.34MB 音箱设计
1
vim-lsp-cxx-highlight:使用cquery,ccls或clangd的CC++ObjC语义突出显示的Vim插件
2024/6/10 3:07:56 975KB c vim cxx neovim
1
Title:RMachineLearningEssentialsAuthor:MicheleUsuelliLength:218pagesEdition:1Language:EnglishPublisher:PacktPublishingPublicationDate:2014-11-25ISBN-10:178398774XISBN-13:9781783987740GainquickaccesstothemachinelearningconceptsandpracticalapplicationsusingtheRdevelopmentenvironmentAboutThisBookBuildmachinelearningalgorithmsusingthemostpowerfultoolsinRIdentifybusinessproblemsandsolvethembydevelopingeffectivesolutionsHands-ontutorialexplainingtheconceptsthroughlotsofpracticalexamples,tipsandtricksWhoThisBookIsForIfyouwanttolearnhowtodevelopeffectivemachinelearningsolutionstoyourbusinessproblemsinR,thisbookisforyou.Itwouldbehelpfultohaveabitoffamiliaritywithbasicobject-orientedprogrammingconcepts,butnopriorexperienceisrequired.InDetailRMachineLearningEssentialsprovidesyouwithanintroductiontomachinelearningwithR.Machinelearningfindsitsapplicationsinspeechrecognition,search-basedoperations,andartificialintelligence,amongotherthings.Youwillstartoffbygettinganintroductiontowhatmachinelearningis,alongwithsomeexamplestodemonstratetheimportanceinunderstandingthebasicideasofmachinelearning.ThisbookwillthenintroduceyoutoRandyouwillseethatitisaninfluentialprogramminglanguagethataidseffectivemachinelearning.Youwilllearnthethreestepstobuildaneffectivemachinelearningsolution,whichareexploringthedata,buildingthesolution,andvalidatingtheresults.Thebookwilldemonstrateeachstep,highlightingtheirpurposeandexplainingtechniquesrelatedtothem.Bytheendofthisbook,youwillbeabletousethemachinelearningtechniqueseffectively,identifybusinessproblems,andsolvethembyapplyingappropriatesolutions.TableofContentsChapter1.TransformingDataintoActionsChapter2.R–APowerfulToolforDevelopingMachineLearningAlgorith
2024/6/9 17:14:38 2.81MB R Machine Learning
1
1998年,飞利浦、索尼和诺基亚创建了NFC论坛,宗旨是推动NFC的发展普及和规范化。
论坛至今共推出了5大类技术规范:协议技术规范(ProtocolTechnicalSpecification);数据交换格式技术规范(DataExchangeFormatTechnicalSpecification);NFC标签类型技术规范(NFCForumTagTypeTechnicalSpecifications);记录类型定义技术规范(RecordTypeDefinitionfTechnicalSpecifications);参考应用技术规范(ReferenceApplicationTechnicalSpecifications)。
本文将介绍技术开发最核心的前4点规范。
2024/5/15 12:53:28 9.46MB NFC NFC协议  RFIC NDEF
1
Delphi中英文语音朗读程序(控件及源码)调试OK先安装MicrosoftSpeechSDK5.1,这是微软的声音支持控件前面安装不多做介绍,一步一步安装即可安装完成后,需要加载Delphi控件在DelphiIDE中选择菜单Project,ImportTypeLibrary—点击按钮Add(C:\ProgramFiles\CommonFiles\MicrosoftShared\Speech\sapi.dll)—点击按钮Install-在Install对话框中点击按钮OK—在Confirm对话框中点击按钮Yes—在对话框中点击按钮OK。
至此,共19个控件被添加到Delphi组件板ActiveX页上。
其中spvoice控件是我们要使用的MicrosoftSpeechSDK5.1下载地址:http://intraweb.5d6d.com/thread-280-1-1.htmlSpVoice详解属性描述AlertBoundary取得或设置停顿分界线。
AllowAudioOutputFormatChangesOnNextSet设置是否允许声音自动调整到合适状态以适应其音频输出。
AudioOutput.取得或设置当前声音使用的的音频输出对象AudioOutputStream取得或设置当前声音使用的的音频输出流对象。
EventInterests取得或设置当前声音返回的事件类型。
Priority取得或设置声音的优先级。
Rate取得或设置阅读的速度。
Status返回一个ISpeechVoiceStatus对象用于显示当前阅读和事件的状态SynchronousSpeakTimeout取得或设置一个时间间隔,用于标识多久未获得一个输出设备后,一个同步的Speak和SpeakStream将终止,以毫秒计算。
Voice取得或设置发音对象。
Volume取得或设置声音的大小。
方法描述DisplayUI是否在控制面板中展示详细设置。
GetAudioOutputs返回一个可用的音频输出标记。
GetVoices返回一个可用的发音对象。
IsUISupported决定是否能通过控制棉板的音频设置来控制。
Pause暂停朗读。
.Resume恢复暂停,继续播放。
Skip在当前输入的文本流中向前或向后跳一定距离再播放。
Speak阅读一个字符串。
SpeakCompleteEvent得到一个朗读完毕的时间句柄SpeakStream朗读一个文本流或一个声音文件。
WaitUntilDone阻塞进程,直到声音播放完毕或者超时。
2024/5/6 10:08:08 348KB Delphi中英文语音朗读程序
1
交替方向乘子法是用于求解低秩和稀疏最优化问题的有效算法,这个包提供了交替方向乘子法的matlab代码。
Thispackagesolvesseveralsparseandlow-rankoptimizationproblemsbyM-ADMMproposedinourwork
1
1073页啊,够爽吧:Introduction15NewinThisRelease15IntroductiontoToad23DBAdminModule24ToadandOracleEnterpriseManager29QuickSearchBar30AdditionalResources31WorkingwithotherQuestProducts32KnowledgeXpert32UsingSQLOptimizerwithToad32BenchmarkFactory33QuestCodeTesterIntegration35ToadBasics37ToadTips37Errors37RACSupport37TaskBar&StatusBar38Toolbars,MenusandShortcutKeys40InstallationandAdministrationofToad64WindowPrivilegesandToad64ToadforOracle,Read-Only64RegisteringToad65SilentInstallation66GroupPolicyManagement71CitrixSupport71SQL*NetVersions72ConfigurationFiles73ServerSideObjectsInstallation93ConnectingtoOracle97ServerLoginWindow97CreateNewConnection99SelectingConnectionColor101SETROLE101AutoConnect103SavePasswordsforConnections104SelectandViewFavoriteConnections104Organizeyourlogindisplay105UseExistingConnection106SQLNETEditor106LDAPEditor107OracleHomes108TNSNamesEditor111Tutorials119CodeXpert119PL/SQLDebugger121SQL*Loader140TeamCoding158RMANTemplates164RMANScriptsinToad164WorkingwithRMANTemplates164ExecutingRMANScriptsfromToad165Comparing166DataDuplicates166CompareSingleObjects166ComparingDatabases167ComparingData174CompareFiles(DifferenceViewer)176ComparingSchemas180ControllingSessions188SelectSession188EndConnections188TestConnections188ConfigureUserLists188SessionInformation189ChangePassword190Commit&Rollback190ConnectandDisconnect191DBMS_Flashback191DiagnosingProblems193ViewExtents193IdentifySpaceDeficits193LogSwitchFrequencyMap194TablespaceMap194TKProfInterfaceWizard196UndoAdvisor198SegmentAdvisor200LogMinerInterface203HealthCheck207TraceFileBrowser226CodeXpert231DatabaseAdministration259AuditSQL/SysPrivs259NLSParameters260ToadFeaturesSecurity260ASMManager263Audit
2024/5/1 4:13:34 11.72MB Toad Oracle
1
NFI接口的详细协议,对NFC开发很有用,要的下载。
2024/4/26 17:17:41 1.1MB NFC NCI
1
xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6xshell6
2024/4/14 22:54:27 6.16MB xshell6
1
共 120 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡