| Author |
Comment/Response |
Henry Lamb
|
09/24/03 7:46pm
You're getting error messages because you have syntax errors. Your code should read
For[i=1,i<15,
first=afttax[[i]];
For[j=1,j<years,
b[i,j]=first*(1+int)^j;
Print[b[i,j]],
j++],
i++]
You have to be careful about where you put the commas and semicolons.
URL: , |
|