自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 使用puppeteer 提示Error: Failed to launch the browser process解决办法

记一次在ubuntu18上使用puppeteer的经过通过远程的code-server使用puppeteer实现在nodejs上也能给网页截图时, 运行官网上的示例报错.如下:const puppeteer = require('puppeteer');(async () => { const browser = await puppeteer.launch() const page = await browser.newPage() await page.goto('https:

2021-03-08 17:18:41 21888 2

原创 ESLint couldn‘t find the config “standard“ to extend from 解决办法

记一次给code-server配置eslint的经过之前在code-server某个项目下配置eslint, 步骤如下:npm i eslint -geslint --init# 走完配置流程(选择使用standard配置)最后报错Oops! Something went wrong! :(ESLint: 7.13.0ESLint couldn't find the config "standard" to extend from. Please check that the name o

2021-03-08 17:13:06 9477

原创 MATLAB 实现单纯形法

对于形如的代码实现function [x,f,it]=linp(A,b,c) %输出x为最优解,f为最优值,it为迭代次数。b=b(:);%变为列向量it=0;[m,n]=size(A);x=zeros(1,n+length(b));A=[A eye(length(b)) b]; %化为标准型,A b合一块c=[c zeros(1,length(b)+1)]; %同上 while...

2018-11-21 11:42:41 31622 12

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除