triangular matrix 
August 27th, 2008, 06:35 PM
| | | |
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language......... | 
August 27th, 2008, 06:55 PM
| | | | re: triangular matrix
mo/-/sin <Ri.mohsin@gmail.comwrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| int main( void )
{
int utm[ 2 ][ 2 ] = { { 1, 2 }, { 0, 3 } };
return 0;
}
HTH.
--
\ Jens Thoms Toerring ___ jt@toerring.de
\__________________________ http://toerring.de | 
August 27th, 2008, 07:05 PM
| | | | re: triangular matrix
On Wed, 27 Aug 2008 10:30:38 -0700, mo/-/sin wrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| int triangular_matrix[4][4] =
{
{1,0,0,0},
{1,1,0,0},
{1,1,1,0},
{1,1,1,1}
};
--
OU | 
August 27th, 2008, 07:15 PM
| | | | re: triangular matrix
mo/-/sin wrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| .... and why should we do your homework for free?
--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique http://www.cs.virginia.edu/~lcc-win32 | 
August 27th, 2008, 07:55 PM
| | | | re: triangular matrix
On Wed, 27 Aug 2008 10:30:38 -0700, mo/-/sin wrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| Why?
Rui Maciel | 
August 27th, 2008, 08:05 PM
| | | | re: triangular matrix
On Aug 27, 10:30*am, "mo/-/sin" <Ri.moh...@gmail.comwrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| Here is a matrix which is both upper and lower triangular (bonus!).
Furthermore, it can be used as the identity matrix for certain small
matrices or even {in a pinch} as a scalar identity element:
static double ultriang[1] = {1.0};
HTH | 
August 27th, 2008, 11:25 PM
| | | | re: triangular matrix
On 2008-08-27, mo/-/sin <Ri.mohsin@gmail.comwrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| This represents a triangular matrix:
/*
* **
** * *
* * *
* * *
*** **
** *
* * **
* * *
* * *
** ***
*/
int main(void) { return 0; }
Please give me credit for your art class.
--
Andrew Poelstra apoelstra@wpsoftware.com
To email me, use the above email addresss with .com set to .net | 
August 27th, 2008, 11:35 PM
| | | | re: triangular matrix
On 2008-08-27, Andrew Poelstra <apoelstra@supernova.homewrote: Quote:
On 2008-08-27, mo/-/sin <Ri.mohsin@gmail.comwrote: Quote:
>hi........... i m mohsin
>plz provide me the program which represents triangular matrix in c
>language.........
| >
This represents a triangular matrix:
>
/*
>
* **
** * *
* * *
* * *
*** **
>
** *
* * **
* * *
* * *
** ***
>
*/
>
int main(void) { return 0; }
>
| (Bear in mind I'm using the word "represents" with very
little sleep ;).
[/OT]
--
Andrew Poelstra apoelstra@wpsoftware.com
To email me, use the above email addresss with .com set to .net | 
August 28th, 2008, 01:45 PM
| | | | re: triangular matrix
On Aug 27, 11:10*pm, jacob navia <ja...@nospam.comwrote: Quote:
mo/-/sin wrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| >
... and why should we do your homework for free?
>
--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatiquehttp://www.cs.virginia.edu/~lcc-win32
| its not ma homework........... i want it bcoz i havnt learn the
concept of triangular matrix.......... | 
August 28th, 2008, 01:45 PM
| | | | re: triangular matrix
On Aug 27, 10:54*pm, Rui Maciel <rui.mac...@gmail.comwrote: Quote:
On Wed, 27 Aug 2008 10:30:38 -0700, mo/-/sin wrote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| >
Why?
>
Rui Maciel
| i want it bcoz i havnt learn the concept of triangular matrix.......... | 
August 28th, 2008, 01:55 PM
| | | | re: triangular matrix
mo/-/sin wrote: Quote:
On Aug 27, 11:10 pm, jacob navia <ja...@nospam.comwrote: Quote:
>mo/-/sin wrote: Quote:
>>hi........... i m mohsin
>>plz provide me the program which represents triangular matrix in c
>>language.........
| >... and why should we do your homework for free?
>>
>--
>jacob navia
>jacob at jacob point remcomp point fr
>logiciels/informatiquehttp://www.cs.virginia.edu/~lcc-win32
| >
its not ma homework........... i want it bcoz i havnt learn the
concept of triangular matrix..........
| Neither have I.
And if I wanted to, I wouldn't try to learn it here.
Google wants to be your friend. http://www.google.com/search?hl=en&q...ular+matrix%22
Results 1 - 10 of about 241,000 for "triangular matrix".
Especially in a mathematical context,
you can express yourself less clearly
if you spell "because" as "cos" instead of as "bcoz".
--
pete | 
August 28th, 2008, 03:05 PM
| | | | re: triangular matrix
"mo/-/sin" wrote:
<enqote> Quote: Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| >
... and why should we do your homework for free?
>
--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatiquehttp://www.cs.virginia.edu/~lcc-win32
| its not ma homework........... i want it bcoz i havnt learn the
concept of triangular matrix..........
<end quote>
Looking at a computer program as a way to learn mathematical concepts
strikes me as a spectacularly poor way to learn mathematics. Would you look
at am FFT program to learn the rudiments of Fourier analysis? Good God!
Start at this link and branch out from there if you need to. http://en.wikipedia.org/wiki/Triangular_matrix | 
August 29th, 2008, 06:55 PM
| | | | re: triangular matrix
Plz provide the program for artificial intelligence.
I want it bcoz i havnt learn the concept of artificial intelligence...
Its not ma homewk - i jus havnt learn the concept.
"mo/-/sin" <Ri.mohsin@gmail.comwrote in message
news:b4e236dd-e2e2-47ae-b691-b25969460ddc@q5g2000prf.googlegroups.com... Quote:
hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........
| | 
August 29th, 2008, 07:05 PM
| | | | re: triangular matrix
MikeC wrote: Quote:
Plz provide the program for artificial intelligence.
I want it bcoz i havnt learn the concept of artificial intelligence...
Its not ma homewk - i jus havnt learn the concept.
| We actually get a lot of that around here.
I almost answered that.
--
pete |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 225,662 network members.
|