Click here to Skip to main content
15,911,785 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: wrap the wininet dll Pin
ThatsAlok16-Jun-10 23:57
ThatsAlok16-Jun-10 23:57 
GeneralRe: wrap the wininet dll Pin
Moak17-Jun-10 3:43
Moak17-Jun-10 3:43 
Questionvalid date and time Pin
MKC00216-Jun-10 6:01
MKC00216-Jun-10 6:01 
AnswerRe: valid date and time Pin
CPallini16-Jun-10 6:19
mveCPallini16-Jun-10 6:19 
QuestionFloodFill question Pin
ForNow16-Jun-10 5:04
ForNow16-Jun-10 5:04 
AnswerRe: FloodFill question Pin
Chris Losinger16-Jun-10 5:39
professionalChris Losinger16-Jun-10 5:39 
AnswerRe: FloodFill question Pin
Niklas L16-Jun-10 6:27
Niklas L16-Jun-10 6:27 
Questionbetter linear algebra Pin
VeganFanatic16-Jun-10 5:03
VeganFanatic16-Jun-10 5:03 
OK I have a boat load of code, it works, bit its unaware of vectors etc.

I have a vector template that fully supports all standard operators, including scalars
I have a matrix template that supports all standard operators, including vectors and scalars

So give some matrix<template_class> m

int rows=m.data.size()
int cols=m.data[0].size();

what can we do to make m become reduced row echelon form

no back substitution yet, I just wanted to see a vector way to identify a pivot from m
and make it reduced form

this way I it should be easier to find the rank etc.

So as I see it we need to find a pivot

My matrix works with std::swap for any 2 rows
My m[] returns a vector, m[][] returns template_class
m = m + v[] works
m = m + template_class works
so do the other operators

I made it assignable by element or row

BTW my vector and matrix templates are parallel, hence the reason I wanted to leverage them
http://www.contract-developer.tk

QuestionNew In c and c++. Downloading data from a server Pin
Eli Nurman16-Jun-10 4:26
Eli Nurman16-Jun-10 4:26 
AnswerRe: New In c and c++. Downloading data from a server Pin
Maximilien16-Jun-10 4:46
Maximilien16-Jun-10 4:46 
GeneralRe: New In c and c++. Downloading data from a server Pin
Eli Nurman16-Jun-10 6:14
Eli Nurman16-Jun-10 6:14 
GeneralRe: New In c and c++. Downloading data from a server Pin
Maximilien16-Jun-10 6:56
Maximilien16-Jun-10 6:56 
AnswerRe: New In c and c++. Downloading data from a server Pin
David Crow16-Jun-10 5:10
David Crow16-Jun-10 5:10 
AnswerRe: New In c and c++. Downloading data from a server Pin
Aescleal16-Jun-10 7:48
Aescleal16-Jun-10 7:48 
AnswerRe: New In c and c++. Downloading data from a server Pin
ThatsAlok17-Jun-10 0:00
ThatsAlok17-Jun-10 0:00 
GeneralRe: New In c and c++. Downloading data from a server Pin
Eli Nurman17-Jun-10 1:37
Eli Nurman17-Jun-10 1:37 
Questionimplicit cast between pointers Pin
Iosif Murariu16-Jun-10 3:01
Iosif Murariu16-Jun-10 3:01 
AnswerRe: implicit cast between pointers PinPopular
Cedric Moonen16-Jun-10 3:06
Cedric Moonen16-Jun-10 3:06 
GeneralRe: implicit cast between pointers Pin
Iosif Murariu16-Jun-10 3:11
Iosif Murariu16-Jun-10 3:11 
GeneralRe: implicit cast between pointers Pin
Iosif Murariu16-Jun-10 3:13
Iosif Murariu16-Jun-10 3:13 
GeneralRe: implicit cast between pointers Pin
CPallini16-Jun-10 3:19
mveCPallini16-Jun-10 3:19 
GeneralRe: implicit cast between pointers Pin
Cedric Moonen16-Jun-10 3:20
Cedric Moonen16-Jun-10 3:20 
GeneralRe: implicit cast between pointers Pin
Iosif Murariu16-Jun-10 3:30
Iosif Murariu16-Jun-10 3:30 
GeneralRe: implicit cast between pointers Pin
Cedric Moonen16-Jun-10 3:39
Cedric Moonen16-Jun-10 3:39 
GeneralRe: implicit cast between pointers Pin
Iosif Murariu16-Jun-10 3:42
Iosif Murariu16-Jun-10 3:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.