Recent content by Karto
-
K
MATLAB Second order system of differential equations in Matlab
Solving PDE Hello! First write in MATLAB help assempde I think this can solve your problem. If not, then write help pde This will give you a list of very usefull functions to solve PDE with MATLAB (but in 2-D only). For a first approximation you can use a GUI called...- Karto
- Post #10
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
K
MATLAB MATLAB - changing variable name with each iteration?
change a variable name The matrix solution is cool, but if you really want to change the variable name in a loop, so use varname_1, varname_2, and so on, you'd better use eval function (write help eval in MATLAB), so, for example: for iter=1:10 % varname_i=3*(i^2); eval(['varname_'...- Karto
- Post #8
- Forum: MATLAB, Maple, Mathematica, LaTeX