crashkeeper
Structural
- Feb 12, 2008
- 8
Hi, i would like to do a while cycle with functions inside. i have tried but seems that mathcad dont like functions inside.
what i want to do is augment a matrix i times like this:
i want my while cycle to augment N(x) matrix with A(x) to result in this:
so the cycle i have made is:
Can you please help me in this problem?
thanks
what i want to do is augment a matrix i times like this:
Code:
A(x)=| f(x) 0 | <- this is a matrix with a function
| 0 f(x) |
i want my while cycle to augment N(x) matrix with A(x) to result in this:
Code:
N(x)=| f(x) 0 f(x) 0 ... |
| 0 f(x) 0 f(x)..|
Code:
A(x):= | f(x) 0 |
| 0 f(x)|
i:=0
N(x):= while i<3
A(x) <- augment(A(x),N(x))
i:=i+1
N(x)-> doenst calculate. it takes lot of time and nothin
thanks