SOLVE Method and loops?
- From: "Alex Truuli" <cyberalexx2@xxxxxxxx>
- Date: Sat, 3 Sep 2005 11:08:47 -0400
Hallo,
i have one problem,
i need such kind of code for my program
if n==4
[a1 a2 a3]=solve(Fx(1,1),Fx(1,2),Fx(1,3),a1,a2,a3)
[a4 a5 a6]=solve(Fx(2,1),Fx(2,2),Fx(2,3),a4,a5,a6)
elseif n==5
[a1 a2 a3 a4]= =solve(Fx(1,1),Fx(1,2),Fx(1,3),Fx(1,4),a1,a2,a3,a4);
[a5 a6 a7 a8]=
=solve(Fx(2,1),Fx(2,2),Fx(2,3),Fx(2,4),a5,a6,a7,a8);
elseif n==6
..
..
..
..
and so on
Is it possible to do it with loops, for example with for-loop???
I tryed to save for example
Fx(1,1),Fx(1,2),Fx(1,3),a1,a2,a3
in one vector and to give this vector to solve method but it doesnt
work :-(
Thank you for your help!!!!
A
.
- Follow-Ups:
- Re: SOLVE Method and loops?
- From: helper
- Re: SOLVE Method and loops?
- Prev by Date: Using Java Classes
- Next by Date: how to open an image file
- Previous by thread: Using Java Classes
- Next by thread: Re: SOLVE Method and loops?
- Index(es):
Relevant Pages
|