首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
其前专题
c#编程:有一个分数序列,2/1,3/2,5/3,8/5,13/8,21/13....找出数列的规律并求出其前30项的和
using System;using System.Collections.Generic;using System.Linq;using System.Text;//有一个分数序列,2/1,3/2,5/3,8/5,13/8,21/13....找出数列的规律并求出其前30项的和namespace ans1{class Program{static void Main(string[]
阅读更多...
【MATLAB传递函数仿真】虑一个单位负反馈控制系统,其前向通道传递函数为 试应用伯德图法设计一个校正装置Gc(s),使得校正后系统的静态速度误差常
【MATLAB传递函数仿真】虑一个单位负反馈控制系统,其前向通道传递函数为 试应用伯德图法设计一个校正装置Gc(s),使得校正后系统的静态速度误差常 代码: clc;clear;KK = 40;%矫正后的开环增益 4*kvm = 50;ng0 = KK*[1];dg0 = conv([1,0],conv([1,1],[1,4]));G = tf(ng0,dg0);w = log
阅读更多...
vue 根据当前月份获取其前六个月的月份
最近六个月显示 vue调用方法 let month = new Date().getMonth() + 1this.month = getRecentMonth(month) js: /*** 根据当前月份获取其前六个月的月份* @param month* @return {Array|*}*/export function getRecentMonth(month) {let ar
阅读更多...