Connecting Tech Pros Worldwide Help | Site Map

triangular matrix

 
LinkBack Thread Tools Search this Thread
  #1  
Old August 27th, 2008, 05:35 PM
mo/-/sin
Guest
 
Posts: n/a
Default triangular matrix

hi........... i m mohsin
plz provide me the program which represents triangular matrix in c
language.........

  #2  
Old August 27th, 2008, 05:55 PM
Jens Thoms Toerring
Guest
 
Posts: n/a
Default 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
  #3  
Old August 27th, 2008, 06:05 PM
Obnoxious User
Guest
 
Posts: n/a
Default 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
  #4  
Old August 27th, 2008, 06:15 PM
jacob navia
Guest
 
Posts: n/a
Default 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
  #5  
Old August 27th, 2008, 06:55 PM
Rui Maciel
Guest
 
Posts: n/a
Default 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
  #6  
Old August 27th, 2008, 07:05 PM
user923005
Guest
 
Posts: n/a
Default 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
  #7  
Old August 27th, 2008, 10:25 PM
Andrew Poelstra
Guest
 
Posts: n/a
Default 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
  #8  
Old August 27th, 2008, 10:35 PM
Andrew Poelstra
Guest
 
Posts: n/a
Default 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
  #9  
Old August 28th, 2008, 12:45 PM
mo/-/sin
Guest
 
Posts: n/a
Default 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..........
  #10  
Old August 28th, 2008, 12:45 PM
mo/-/sin
Guest
 
Posts: n/a
Default 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..........
  #11  
Old August 28th, 2008, 12:55 PM
pete
Guest
 
Posts: n/a
Default 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
  #12  
Old August 28th, 2008, 02:05 PM
osmium
Guest
 
Posts: n/a
Default 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


  #13  
Old August 29th, 2008, 05:55 PM
MikeC
Guest
 
Posts: n/a
Default 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.........

  #14  
Old August 29th, 2008, 06:05 PM
pete
Guest
 
Posts: n/a
Default 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
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

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 220,989 network members.