473,725 Members | 2,264 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

<numeric> accumulate won't accept three inputs

I am trying to use the std::accumulate function. When I compile the
following code I get: error C2780: '_Ty
std::accumulate (_InIt,_InIt,_T y,_Fn2)' : expects 4 arguments - 3 provided.
It should accept three inputs as I've used below. I don't understand. I'd
really appreciate it if someone could set me straight. I've looked at the
declaration in numeric, there is a three input template as I've used. Also
in the help files included with MS VC++ there is an example as I've used the
function. I don't get it! Thanks in advance for any time and help you can
provide. I am using MS VC++ Version 7.1.3088 with .NET Framework ver.
1.1.4322 SP1

#include <iostream>
#include <numeric>
#include <list>

using namespace std;

double average(const list<double>&);

int main(){

list<double> lInput;
double dInput;

while(cin >> dInput){
lInput.push_bac k(dInput);
cout << "Average so far: " << average(lInput) << endl;
}

return 0;
}
double average(const list<double>& l){
return accumulate(l.be gin(), l.end, 0.0) / l.size();
}


Nov 17 '05 #1
2 1181
double average(const list<double>& l){
return accumulate(l.be gin(), l.end, 0.0) / l.size(); //Error: missed params
}

Must be

double average(const list<double>& l){
return accumulate(l.be gin(), l.end(), 0.0) / l.size();
}
--
Un saludo
Rodrigo Corral González [MVP]

FAQ de microsoft.publi c.es.vc++
http://rcorral.mvps.org
Nov 17 '05 #2
Thank you very much. I stared at the code, looked at examples, looked on the
web, etc. The answer was very obvious, but I just didn't see it. Thank you
for your reply and your time.

Saludos,
Ben R

"Rodrigo Corral [MVP]" wrote:
double average(const list<double>& l){
return accumulate(l.be gin(), l.end, 0.0) / l.size(); //Error: missed params
}

Must be

double average(const list<double>& l){
return accumulate(l.be gin(), l.end(), 0.0) / l.size();
}
--
Un saludo
Rodrigo Corral González [MVP]

FAQ de microsoft.publi c.es.vc++
http://rcorral.mvps.org

Nov 17 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
4576
by: Dave | last post by:
Hello all, Is is allowable for me to specialize numeric_limits<> for my own numeric type? Does this violate any sort of rule against mucking with std? Thanks, Dave
9
2339
by: Ragnar | last post by:
Hi I have one question regarding Tidy (http://tidy.sourceforge.net). My source XML-file has got a lot of unclosed <BR>-tags. Which command do I need (in my tidy config-file) to close it <BR/and make valid XML out of it? regards Rag.
19
3606
by: VK | last post by:
http://groups.google.com/group/comp.lang.javascript/browse_frm/thread/ b495b4898808fde0> is more than one month old - this may pose problem for posting over some news servers. This is why I'm starting a new one] I'd still like to finish this rounding mess. As a startup lemma we can take that VK is the worst programmer of all times and places: let's move from here forward please. The usability of any program depends on exact behavior...
1
8222
by: Jacek Dziedzic | last post by:
Hello! This is my first time dealing with Very Large Files. I have vector of strings representing numbers and I need to extract bytes in binary mode from a Large File that correspond to ranges specified by the strings. For example for an input of "0", "100", "500", "700" I need to create three files, the first would contain
13
2271
by: Mark | last post by:
Dear folks, In Javascript, is it possible to get all id names within, say, a <div></divpair? Like the array of "document.images", I mean. The reason I ask, is that I have a calender whose <td></tdtable elements, within a given <div></div>, all have a class type, one of which is "today" (to highlight it). Once the calender is drawn, the Javascript has ended. And since Javascript has no known (to me) method of storing variables in say,...
7
9861
by: Christian Hackl | last post by:
Hi everyone, I've got a question about what makes the "img" element's width/height attributes valid HTML or XHTML. First of all, this is a rather theoretical question, but digging through the W3C HTML 4.01 standard and this group's archive didn't give me a satisfactory answer, so here we go: Is <img src="img.png" alt="" width="100px" height="100px"really valid?
0
710
by: Ethan Furman | last post by:
Greetings, List! Still working on my Measure class, and my next question is... (drum roll please ;) What are the advantages of using ____ vs __cmp__? Thanks in advance! -- Ethan
0
1121
by: Gabriel Genellina | last post by:
En Thu, 10 Jul 2008 17:37:42 -0300, Ethan Furman <ethan@stoneleaf.us> escribi�: If your objects obey the trichotomy law (an object MUST BE less than, greater than, or equal to another one, and there is no other possibility) then __cmp__ is enough, and easier to define than all the rich comparison operations. In other cases, __cmp__ is not suitable: by example, complex numbers can't define "greater than" ; you can only use "equal" or...
36
5102
by: Roedy Green | last post by:
The only browser I have encountered that supports <colgroup><col class="behold"></colgroup> to apply a CSS style to a whole column, is Microsoft Internet Explorer. I have been told it SHOULD NOT do so, since this is not part of the specification. How then to you apply styles to entire columns? Surely you don't have to write <td class="behold"on every row item.
0
8889
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8752
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9179
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4784
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3228
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2637
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.