python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Converting a MATLAB code for generating 2D Laplacian matrix using a Kronecker product to python
The following MATLAB code generates the 2D Laplacian matrix using a Kronecker product
approach.
function A=A(N)
% Assemble the system matrix A
e = ones(N,1);
D = spdiags([e -2*e e], -1:1, N, N);
I = ...
Siam
Votes: 0
Answers: 0
Having trouble solving Population balance PDE in FiPy
I am a beginner in using FiPy and also in working with Finite Volume Methods in general. So please forgive me if my questions are naïve
I am trying to solve a population balance equation of the form
P...
veeman
Votes: 0
Answers: 1
Eclipse PDE plugin is not load in target Platform, debugging works
I try to make my first plugin for Eclipse. To do it, I have defined a Target Platform and has created a small hello world Plugin. It has the Extension Point org.eclipse.ui.startup. When I run the Plug...

Björn Beuck
Votes: 0
Answers: 0
How to solve a 4th order differential equation in space and time variables in Julia
I am relatively new to solving differential equations in Julia and thus cant figure out how to solve a higher order ode in 2 independent variables(space and time) and thus would request for assistance...
Rodash
Votes: 0
Answers: 1