Question:
how to use GWBASIC programme to solve matrices?
merr
2007-06-29 05:34:23 UTC
i downloaded a gwbasic program from the internet but i dont know how to use it
Seven answers:
jimschem
2007-07-04 21:08:41 UTC
dim a(2,3)

a(1,1)=1: a(1,2)=0: a(1,3)=-3

a(2,1)=2: a(2,2)=-1: a(2,3)=1



for i=1 to 2

for j=1 to 3

m=a(i,j)*a(i,j+1)

next j

next i



Write your ow matrix operations like in the incomplete

example above.

dimension you array(s).

Fill the array or matrix locations with data (numbers).

Use a double nested loop to perfom the math operation(s).

Then print the answers.





I learned BASIC back in 1976 on a XEROX 560 mainframe.

I've used, IBM PC basic, basica, quickbasic 1.0 - 4.5, gwbasic, powerbasic and have never seen any built in matrix functions.
CPUcate
2007-06-29 12:39:29 UTC
I've been using gwbasic for 5 years but I have not encountered a command that directly solve matrix

You have to manipulate the 2 dimension array what ever operation you want
2007-07-06 22:39:29 UTC
GWBASIC has no matrix commands.



You could write a basic program to do matrix calculations or find a ready-made program somewhere.



Better yet get a free CAGWBASIC has no matrix commands.



You could write a basic program to do matrix calculations or find a ready-made program somewhere.



Better yet get a free CAS at S at
?
2007-06-29 13:10:14 UTC
GWBASIC has no matrix commands.



You could write a basic program to do matrix calculations or find a ready-made program somewhere.



Better yet get a free CAS at http://mathomatic.orgserve.de/math/adv.html
deflagrated
2007-06-29 13:14:10 UTC
you need a GWBASIC interpreter. Better still use QBASIC the two are compatible and it is much faster not only that but Qbasic falls into the category of"abandon ware" so can be downloaded for free.
?
2007-07-06 04:02:20 UTC
http://ceee.rice.edu/Books/LA/sintro/index.html
2014-10-29 13:17:27 UTC
mjy 2 matrices k elements ko sum krna hai.. please help


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...