Huayi Wei
Huayi Wei
I want to show ipad screen on my Ubuntu desktop, so I can easily write something on my ipad pro with apple pencil, and show it to others on my...
我在每一个页面中放入下面的代码: ``` var gitment = new Gitment({ id: 'window.location.pathname', // 可选。默认为 location.href owner: 'xxxxxxxx', repo: 'xxxxxxxxxx', oauth: { client_id: '××××××××××××', client_secret: 'xxxxxxxxxxxxxxxxxxxxx', }, }) ``` 结果创建几个页面的 issue 后, 新的页面再加入上面的代码,就不会再创建新的 issue,...
在目前的 FEALPy 程序中,给定一组积分点 `bcs` ,会计算出每个积分点在每个单元上的每个基函数的值数组 `gphi`,然后用于后续的数值积分(如矩阵向量的组装) ``` from fealpy.mesh import MeshFactory as MF from fealpy.functionspace import LagrangeFiniteElementSpace box = [0, 1, 0, 1] mesh = MF.boxmesh2d(box, nx = 10, ny...
我有一段如下的代码,展示 MeshFactory 的用法 ```python import numpy as np import matplotlib.pyplot as plt from fealpy.mesh import MeshFactory as MF box = [0, 1, 0, 1] mesh = MF.boxmesh2d(box, nx=10, ny=10, meshtype='tri')...
1.对 Makefile.inc 针对 Windows 系统做的修改 ``` # Makefile.inc LPORDDIR = $(topdir)/PORD/lib/ IPORD = -I$(topdir)/PORD/include/ LPORD = -L$(LPORDDIR) -lpord LMETISDIR = /C/msys64/mingw64/lib IMETIS = -I/C/msys64/mingw64/include LMETIS = -L$(LMETISDIR) -lmetis ORDERINGSF =...