Search the web
Sign In
New User? Sign Up
ublas-dev · uBLAS development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1894 - 1923 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1894
Hi Karl, H Ina, ... This is the big problem! How to hide the data while in fact still allowing external access to it. This can be done by making things private...
Michael Stevens
mmssau
Offline Send Email
Sep 1, 2004
8:10 am
1895
... I support this idea. It is more difficult to modify private data by accident. This is what we want I suppose. Using an accessor supposes you know what you...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Sep 1, 2004
9:17 am
1896
Hi, Since functor_type has become private in matrix<T,F,A>, I have modified the bindings so that now orientation_category is used instead. I have committed the...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Sep 1, 2004
2:31 pm
1897
Dear All, Every time I make commits I always worry about what I will break for people using the current CVS version. The trouble is I need to commit to get ...
Michael Stevens
mmssau
Offline Send Email
Sep 1, 2004
3:19 pm
1898
Dear All, Now that uBLAS is compiling (and hopefully) working so well on so many compilers I have made another round of changes! Firstly I have introduced STL...
Michael Stevens
mmssau
Offline Send Email
Sep 1, 2004
3:35 pm
1899
Hi, Doing a cvs update of the Boost CVS I encountered a compiler bug in ublas: ...boost/boost/numeric/ublas/matrix_sparse.hpp:2556: error: no matching ...
Matthias Troyer
matthiastroyer
Offline Send Email
Sep 2, 2004
8:27 am
1900
Hi Matthias, My mistake when adding Allocators. I had temporarily removed to default constructor from unbounded_array. I have now given it a new one! This...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
9:17 am
1901
Dear Michael, ... ....breaking my code :). 1.) ublas::bounded_matrix<double,6,6> lcov,hlcov; lcov()=ublas::identity_matrix<double>(6); changing "lcov() =" in...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Sep 2, 2004
9:42 am
1902
Dear Patrick, ... That is bad! ... I think this should be the same problem as Matthias reported and should be fixed now. ... These are the proxy shortcuts! The...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
10:30 am
1903
Hi all, I compiled a file with the following lines: #include <boost/numeric/ublas/matrix_sparse.hpp> #include <iostream> int main() { using namespace...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Sep 2, 2004
10:44 am
1904
... Ublas uses rather advanced C++ functionalities and thus sometimes we hit trouble with different compilers. This situation will improve because 1) compilers...
Toon Knapen
tknapen
Offline Send Email
Sep 2, 2004
11:02 am
1905
... Thanks!...
Matthias Troyer
matthiastroyer
Offline Send Email
Sep 2, 2004
11:07 am
1906
Michael, attached is a simple example that runs perfectly when compiled against Boost 1.31 but aborts at run time when compiled against currect Boost CVS. Hope...
Angus Leeming
r73ue8_u1
Offline Send Email
Sep 2, 2004
11:14 am
1907
... (Sorry for the long delay). Currently none of the regression tests compile on vacpp. But I'm going over them in following days trying to find the causes of...
Toon Knapen
tknapen
Offline Send Email
Sep 2, 2004
11:37 am
1908
... How did you come up with BOOST_UBLAS_ENABLE_PROXY ? I have grepped all of ublas but found nothing. Could I add following to ublas/config.hpp #ifndef...
Toon Knapen
tknapen
Offline Send Email
Sep 2, 2004
12:02 pm
1909
Hi, I'm looking for a ublas function which accesses some vector elements as a matrix, e.g. something like reshape() in FORTRAN or Matlab. There exists...
ralfdenzer
Offline Send Email
Sep 2, 2004
12:48 pm
1910
Toon, ... Or we could simply go back to the previous default to keep people happy! I think we should collectively decided either way so that user code does not...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
1:08 pm
1911
Angus, ... Fun fun fun! ... Sure did! It is fixed and committed. I thought it would be a nasty problem with the very hard proxy or sparse matrix code. But that...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
1:08 pm
1912
... Just looked into the standard (20.4.1.1) and could not find where it says that allocators can not allocate with size == 0 ?...
Toon Knapen
tknapen
Offline Send Email
Sep 2, 2004
1:18 pm
1913
Hello, ... syntax?? TValue norm=ublas::inner_prod(hline_.project(ublas::range (0, 3)),hline_.project(ublas::range (0, 3))); line.project(ublas::range(0,3))= ...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Sep 2, 2004
1:21 pm
1914
Ralf, ... uBLAS has an intelligent resize. It's default behaviour is to preserve the common sub vector or sub matrix of the previous and new size. New elements...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
1:27 pm
1915
... Perhaps, we should first have a discussion on the interface and user friendly-ness of ublas objects before making decisions on whether to drop or develop...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Sep 2, 2004
1:29 pm
1916
Hi Michael, ... I now introduced ctors and = in my classes. This works fine for me. For the range things, see other posting. Patrick...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Sep 2, 2004
1:30 pm
1917
Hello, ... Appreciated it is long! ... This could be a good compromise! The shortcuts are only "syntactic sugar" so the they don't need full generality. For...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
1:38 pm
1918
Toon, ... Hmmm. My new information was from Generic Programming and the STL. This explictly excludes size==0 in Allocator concept. Stroupstrop did mention it...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
1:41 pm
1919
I suppose 'data' should be 'data_'. Currently the resize function does not compile because 'data' is not declared....
Toon Knapen
tknapen
Offline Send Email
Sep 2, 2004
1:41 pm
1920
... This is a completely different syntax from what we have now. It suggests that the classes range and slice are no longer required. This is not necessarily a...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Sep 2, 2004
1:53 pm
1921
... preserve the ... elements ... create a new ... Not really. Let's say I have a vector v with v.size() = 20. Now I want to access this as a matrix m with...
ralfdenzer
Offline Send Email
Sep 2, 2004
2:00 pm
1922
Toon, ... Strange, Some how I must have run the regression tests before saving! Ok I need a rest! Michael...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
2:04 pm
1923
Karl, Quick reply as I need to do something else! For now I have modified config.hpp to the operator() syntax is back on for all the people who use...
Michael Stevens
mmssau
Offline Send Email
Sep 2, 2004
2:09 pm
Messages 1894 - 1923 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help