Recent content by Karto

  1. 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...
  2. K

    MATLAB Simulating Dipole Antennas in MATLAB with PDETOOL

    Hello people: Have you ever simulated a dipole antenna in MATLAB, for example, using PDETOOL? I am trying to achieve this, but I reach to non-accurate solutions when I set non-canonical phantoms in the environment of the dipole, comparing the results with comercial softwares. This is...
  3. 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_'...
Back
Top