Hi I want to (multiply,add,etc) vector by scalar value for example myv1 * 3 , I know I can do a function with a forloop , but is there a way of doing this using STL function ? something like the {Algorithm.h :: transform function } ??
|
|
|
Yes, using
|
||||
|
|
|
If you can use a
If you have to use a
(assuming you have something similar to Boost.Lambda that allows you to easily create anonymous function objects like |
|||||||
|
|
Just : if you can have your data in a fixed size array (float values[N]) you could use SSE intrinsics to make it faster as it will multiply sevreral float a a time (4). |
|||
|
|
|
I know this not STL as you want, but it is something you can adapt as different needs arise. Below is a template you can use to calculate; 'func' would be the function you want to do: multiply, add, and so on; 'parm' is the second parameter to the 'func'. You can easily extend this to take different func's with more parms of varied types.
Also, this is not a 'safe' function, you must do type/value-checking etc. before you use it. |
|||||
|
