A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

0
votes
2answers
54 views

Why is my JavaScript code not calling my function?

I am fairly new to JavaScript and made a VERY basic choose your own adventure game with a switch statement. When I attempt to call my function using a button it is unsuccessful. My JavaScript alone is ...
0
votes
1answer
39 views

Replace JavaScript's function keyword

Is it possible to replace the function keyword to something smaller as void, sub etc? I've seen it being used in libraries like these two: http://sweetjs.org/ http://processingjs.org/
0
votes
2answers
61 views

Why does my original list change?

I a wrote a function SwapCities that is able to swap entries 3 and 4 in a list. So f.e. [0,1,2,3,4] should become [0,1,2,4,3]. This function works perfectly, but strangely my original list also ...
-3
votes
1answer
59 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
1
vote
3answers
56 views

How do I use user input to invoke a function in Python? [duplicate]

I have several functions such as: def func1(): print 'func1' def func2(): print 'func2' def func3(): print 'func3' Then I ask the user to input what function they want to run using ...
0
votes
2answers
10 views

wp_get_attachment_image does not return medium sized images

I read through the codex for these 2 functions: wp_get_attachment_image http://codex.wordpress.org/Function_Reference/wp_get_attachment_image wp_get_attachment_image_src ...
2
votes
5answers
50 views

Creating a new txt file with a PHP function

I am trying to write a function that takes two parameters (the filename and a sting to put inside) that creates a new file, containing the string. <?php function writeFile($name, $string) { ...
0
votes
1answer
29 views

How to disable button from being clicked before a function has finished in javascript

Okay, so I have a button without any Id but when it is clicked it starts a function called buttonClick. This function basically controls a slot machine(poke machine) it's images, winnings etc. Note, ...
1
vote
2answers
20 views

Trouble with Jquery for each and $(this), I can't reference one element

I am currently having trouble jquery I'm trying to trigger an event where when the user clicks on the header of an article, the hidden paragraph snippet is displayed under it fades in, my problem is ...
3
votes
2answers
81 views

Wrapping an accessor method for a global object in some other function

I do a lot of stuff specifically with PHP and WordPress, and I've come across this concept quite often throughout the WordPress application; although, this question isn't specific to WordPress. I'll ...
2
votes
1answer
33 views

php functions playing games

I'm curious as to why variables aren't echoing using a function... (If that makes sense lol..) function name(){ echo "$info->fullname"; } When i then use <?php name(); ?> anywhere on ...
-5
votes
7answers
71 views

In C, calling a function from main [closed]

In C, I tried to call a function printSum from main. But the main function isn't calling printSum, its just printing out "Hi!" which is a print statement from main. I am not sure why printSum is not ...
-8
votes
3answers
238 views

Why Haskell's `fst` and `snd` have such a short (strange) names? [closed]

I'm new to Haskell and what really bothers me at the moment is why the people who made the libraries added functions called fst and snd instead of using (normal) names like first and second. What's ...
0
votes
1answer
23 views

Calling jQuery function on page load with multiple elements

I'm working with Volusion and am trying to call a jQuery function on page load. I'm a little new to jQuery so please bear with me. Basically there are '.productnamecolor.colors_productname' items that ...
0
votes
1answer
46 views

Filter not working in Qt C++

I'm trying to filter the elements of a list by quantity using Qt. It's just that I press the filter button and nothing happens. Maybe i'm doing something wrong in the SLOT function. The filter ...
4
votes
2answers
57 views

Lua functions — a simple misunderstanding

I'm trying to develop a function which performs math on two values which have the same key: property = {a=120, b=50, c=85} operator = {has = {a, b}, coefficient = {a = 0.45}} function Result(x) ...
0
votes
2answers
31 views

Using tapply in a function/loop that will replace variable name for the length of the columns of the dataframe

In R, I have a dataset (which I call star) of records with about 50 appended demographics (each demographic can be called var1, var2, var3, etc). I have split the dataset in ~10% groups by using the ...
3
votes
1answer
65 views

call a Lua function just by writing its name (without parentheses)

I'm looking forward to using a variable like "asdf" instead of writing the name function to check its return (which changes now and then). That's why "asdf" variable should update its value everytime ...
0
votes
1answer
37 views

Functioncall to javascript not working

i'm using php to generate some button that have their Id and the Id of the text they should show as parameters. But for some reason the function call doesn't seem to be working. ...
0
votes
1answer
22 views

VBA to C++ dll function call, how to have missing argoument

I have function that I compiled with C++ as dll. I access it via vba no problem everything works great. I want to have one of the arguments to be set to a specific value if the user does not specify ...
1
vote
1answer
49 views

How to let two threads exchange data via a pointer?

I want an asynchronous thread to edit an object. Therefore I store a pointer to that object. Data *pointer; There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
1answer
44 views

How to create callback (add as dynamic argument, a function)?

I'm creating this method / function and I need to implement callback. I mean, I need to add as dynamic argument, a function. I have read several articles but I can not understand how to get it. Any ...
0
votes
1answer
29 views

Javascript fuction declaration conversion

I have a javascript function declared as myFunction: function() { // some codes... } and I want to convert the declaration format to function myFunction() { // some codes... } First of all ...
0
votes
1answer
87 views

How should I use closures in my javascript program? [closed]

This question is about the best way to declare functions in Javascript. the app is a small 2 player board game I'm working on as part of a bigger web page. Basically I have a socket which receives and ...
5
votes
5answers
95 views

Best practice for returning multiple values in Java?

Today I've added a extra security check behind my login forms, to slow down brute force attacks. I've got multiple login forms and made a nice easy to call function that does all the checking and then ...
0
votes
1answer
24 views

Scilab - calling another GUI within a GUI. Functions not working

I'm quite new to scilab, I have created two GUIs (see example below), with script 2 being called from script 1. However the function in script 2 don't seem to work. Can anyone help? Script 1 ...
0
votes
2answers
52 views

Return multiple values with function in R

Iam trying to calculate multiple values with my own function from a dataframe. The function currently returns only one value in a dataframe. It seems my for loop is not working correctly. I've also ...
-2
votes
3answers
38 views

retrieve data from db using function pdo

here is the code before implementing the function, try { $conn = new PDO('mysql:host=localhost;dbname=dbname', 'usr', 'pass'); $conn->setAttribute(PDO::ATTR_ERRMODE, ...
1
vote
2answers
45 views

what is the purpose of having function exec() in Hook.php in prestashop

In the Header.tpl file there is a hook {$HOOK_TOP} which contains all the header part including menu, search etc... You can check that in this URL In the FrontController it shows... 'HOOK_TOP' => ...
1
vote
1answer
30 views

Having an issue with a binary search involving vectors (C++)

I'm attempting to find a value through a binary search, but i keep getting an error of error: no match for 'operator==' in '(& itemNumb)->std::vector<_Tp, _Alloc>::operator[], std::allocator > ...
0
votes
4answers
74 views

C++ function in different source files with global variable

I'm doing c++ with different function. I want to put the function in different source file. To do I create a header file: function.h int X(int i, int k); and the file with the function: ...
0
votes
6answers
63 views

if I define a function in the implementation (.cpp) file without defining it in the header file what happens?

I'm a C++ noob. I have a foo.cpp file which defines a function, void sort() { // details of sort algorithm } I have not defined this in the corresponding header file, but I get no compilation ...
0
votes
6answers
43 views

javascript function, how to take the variable within document.write?

I need to call a variable inside a document.write but it doesnt work... example function(){ var variable=document.getElementById("text"); alert("your text "+ variable); } inside a table ...
-1
votes
2answers
46 views

Call Arbitrary Constructor With Arbitrary Arguments [duplicate]

Given the name of the class as $class, and the arguments to pass to the constructor an an array $args, can I actually create a new instance of $class? It's possible using else-if chains (up to the ...
0
votes
5answers
47 views

Reversed String Using Recursion Functions

#include <stdio.h> #include <stdlib.h> #include <string.h> void rec(char pin[]); main() { char pin[100]; printf("Give word: "); scanf("%s", pin); rec(pin); ...
0
votes
0answers
16 views

Does register_shutdown_function work for nested functions

Suppose I have something like this, <?php $test = new Test(); register_shutdown_function(array($test, 'shutdownHandler')); $test->func1(); Class Test { func1() { ...
0
votes
3answers
43 views

How to change 2 strings using a function, by changing their pointers' value

main() char *s1="Second"; char *s2="First"; swap(s1,s2); printf("%s\n",s1); printf("%s\n",s2); I have as an exercise, to swap those 2 strings above (so that the one that executes the program will ...
1
vote
4answers
44 views

put php function in seperate file and call from another

i have to connect to db many times, So i thought to put db connecting code in anothe file called functions.php as <?php function connect_db(){ $conn = new ...
0
votes
2answers
26 views

Matlab arrayfun mapping using two arrays?

How would I go about mapping the values of TWO arrays to a function and returning the result as an array? arr = [1, 2, 3]; arr2 = [1, 4, 5]; val= arrayfun(@(x) func(arr, arr2)) function val = ...
0
votes
1answer
30 views

Inserting function argument as string within body of function

I am trying to write a function using aggregate() that will allow me to easily specify one or more variables to list by and their names. data: FCST_VAR OBS_SID FCST_INIT_HOUR ME WIND ...
-1
votes
2answers
60 views

JavaScript anonymous functions in script

<?php ?> <!DOCTYPE html> <html> <head> <script type="text/javascript"> jTimesheetid = ""; jTimesheetweekending = ""; jPersonnelNo = ""; jLastInsertID = ""; jWorkCodes = ...
0
votes
1answer
15 views

Basic Syntax for passing a Scanner object as a Parameter in a Function

Here is what I wrote which is pretty basic : import java.util.Scanner; public class Projet { /** * @param args * @param Scanner */ public static void main(String[] args) { ...
-1
votes
1answer
39 views

Get variable from function [closed]

in simple oop , we get result from function like this <?php class A{ function geta(){ ..... $a=..; return $someresult;}} ?> to get result from function geta(), we just create new instance ...
1
vote
2answers
54 views

Do variables passed into functions accepting the base class still retain their most derived class?

For instance, consider: class Deriv : public Base {...}; ... bar(Deriv d); bar(Base b); foo(Base b) {bar(b);} ... Deriv x; foo(x); // does x get treated as Base for the bar() call // or ...
0
votes
1answer
20 views

Not all validation checks execute onsubmit.

Using a form and javascript to validate fields. Here is the code where I call the validation javascripts, all of which are in seperate documents but file path is specified. function validation() ...
-5
votes
1answer
161 views

how to create a function name with '$' as first letter [closed]

I am using Lua + Delphi and I need to get some values in Lua which come from Delphi procedures. To call them I need to use, for example '$hp' or '$level'. And here, I suppose, it will run the ...
3
votes
2answers
30 views

Can you create functions with custom prototypes in JavaScript?

First of all, I don't want to add methods to Function.prototype. Doing that would make them available for all functions and that's not what I'm looking for. In JavaScript you can create objects with ...
0
votes
1answer
30 views

Proper function prefix notation

Not sure if this is the right place to post this question but: If I have a list of functions that I am listing in a spec doc, lets say MyObj_Func1 MyObj_Func2 MyObj_Func3 and so on but I just want ...
0
votes
2answers
27 views

Passing arrays of varying size to setters/functions in Php

I am relatively new to PHP and have searched quite extensively but can't quite figure out the solution to my problem. I am trying to figure out how to use setters in a class where the variable being ...
0
votes
1answer
43 views

Compilation is stuck on get()/getline() function

Here is my code. I'm trying to compare two *txt files... But then, when I try to compile this code, it becomes stuck on first get() function. I tried to change the numbers of characters stored in char ...

1 2 3 4 5 373