Recent content by tactical

  1. T

    MATLAB Simplifying Matlab Programming: Need Help with Iterating for xtotal Value

    Programming in matlab. I have everything entered correctly, I just need help with iterating. The program is similar to the following: for i=0.1:0.99 calculates x1 for j=0.1:0.99 calculates x2 for k=0.1:0.99 calculates x3 for...
  2. T

    MATLAB Matlab program using implicit Finite Difference

    I guess this might help some: This what the PDE that was discretized
  3. T

    MATLAB Matlab program using implicit Finite Difference

    Hello, I need help writing a MATLAB program to solve a heat transfer problem implicitly. For some reason this is very confusing to me. The problem is stated below. Any help is greatly appriciated. Let me know if you need a little more info. I need to write a program to solve this...
  4. T

    Fortran Help with a very simple fortran program.

    Hey, been 6 semesters since I took a fortran class and it's come up again. I'm and engineering major so I don't know what about programming and what not. Anyways, I need a program that multiplies an NxN matrix by an N dimensional vector. This is what I have so far: Program Matrix IMPLICIT...
  5. T

    Solve SIS Disease Model: Help Needed

    The following problem is an SIS disease problem: Calling: I(t) = number of infectives at time t N = the total population (assumed constant) b = infection rate (here, a positive constant) v = recovery rate (also, a positive constant) a model for this disease is given bu the following...
  6. T

    Fortran Find Area Under Curve w/ Fortran Riemann Sums

    Hello, for my FORTRAN class it wants me to use the method of Riemann's sums to find the area under the curve for the function f(x) = -(x-3)**2 +9, and stop when successive iterations yield a change of less than 0.0000001. I know I am going to have to used double precision. I am just confused...
Back
Top