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
1answer
25 views

bash expand variable in a variable, with $ as prefix

I am working on a bash function, and I suspect that it currently has a syntax error, the code is this: for (( i=1; i<$#; i++)) do GET_BLOCK "/$${!i}/" ... done What I am trying to do is to run ...
0
votes
3answers
33 views

Pointer to a class access public member function [duplicate]

How does below program prints "Show Called" ? I guess it should have been run-time error since value of obj ptr is NULL. #include<iostream> using namespace std; class ex { int ...
1
vote
2answers
40 views

Ocaml - using one function in another

I'm learning Ocaml and having hard time understanding how to use first function as argument of another. For example, I created a function bigger # let bigger (a,b) = match (a,b) with (a,b) -> ...
3
votes
1answer
70 views

Extracting C functions signatures for Erlang

I was wondering what the most suitable tool is for extracting c (and eventually c++) function names, arguments and their types from source code. I would like to use a tool that can be automated as ...
1
vote
2answers
39 views

how to return table in sql function

I am having a sql fuction and I want to return a table, but I'm getting an error: A RETURN statement with a return value cannot be used in this context. Here is my query: ALTER FUNCTION ...
0
votes
1answer
46 views

Python, globally accessable function

pretty new to this and second question tonight, but I'm working on a text-based adventure game. Throughout it I'm using functions for certain commands, and there are different stages to it but I need ...
-1
votes
0answers
8 views

Adding a line in histogram

I've met a weird problem that I can't figure out. I'm supposed to add a normal distribution line upon a histogram.I input every step's code but after typing lines function there's no response. My code ...
1
vote
1answer
51 views

Using resize on a string

Hi everyone well I tried looking for an answer but I couldn't find. (I found how to use it) but the thing is that i just don't know why my code isn't working. Here is my code: #include ...
-2
votes
0answers
18 views

Making a static function containing class [closed]

I came up with this idea while updating my application on Android. Programming anything I sometimes need to use a function in another class, so I make that function static. Doing this, I get multiple ...
0
votes
3answers
79 views

PHP in a javascript function name

This works just like it is supposed too: <script> function test() {alert("add to cart was triggered!");} </script> <img src="images/add-to-cart.png" width="143" height="45" ...
2
votes
3answers
27 views

User-defined functions vs. Built-in / Pre-defined functions

Which is more preferable? between the two? like for example in sorting arrays, would it be more practical to use pre-defined sorting function than creating your own sorting function? What are the ...
0
votes
0answers
19 views

Function To Update Post Content And Insert Media

I Found This Code : add_action('add_attachment', 'create_post'); function create_post( $attach_ID ) { $attachment = get_post( $attach_ID ); $my_post_data = array( ...
2
votes
2answers
96 views

unable to understand these examples from the book javascript, The good parts [closed]

I am reading javascript: The good parts by Douglas Crockford. I am having difficulty in understanding a particular example and the explanation that author provides. example 1: (pg 38) var ...
0
votes
5answers
70 views

where in javascript is this kind of function assignment to variable useful?

I am reading the book. Javascript, The good parts by Douglas Crokford. There are examples provided in the book, but I am not able to understand where and how such examples could be useful in practice. ...
1
vote
1answer
23 views

Function restriction by fixing an argument

How should I make function with lesser dimensionality than the original one by fixing an argument of it: For example I want to make successor function out of sum function as follows: def add(x,y): ...
0
votes
4answers
31 views

Can't retrive parameters

I'm playing with OOP in PHP. I have this code in my index.php <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> ...
0
votes
1answer
29 views

Inner function seems to not use instance object

For reference, I'm coding (kind of) along with The Nature of Code by Daniel Shiffman. However, I'm working in Javascript/HTML5. In the constructor for a class, I use setInterval with an inner ...
0
votes
1answer
27 views

Change by Val, target as range not being recognized

Cells(R, DataCol).Resize(, ColumnCount).Copy Cells(R, DataCol).Offset(RowOffset * (R - StartRow), ColOffset).PasteSpecial xlValues Hey all, When I use the above code running from a module, it ...
0
votes
2answers
38 views

Javascript pass variable through recursive function

I am trying to create a recursive function in Javascript. But in order to loop my XML file properly I am trying to pass the right value taken from the XML length and pass it to the setTimeout ...
0
votes
0answers
17 views

Input/Output with files in C++

I'm not really experienced in working with class variables, because of the accessing restrictions, so I'll use some help. I have a program which includes a class with a few member variables from type ...
3
votes
2answers
26 views

Sass @if true statement not working function

I am trying to make a function which converts a pixel size to ems or rems. The function is as follows: @function px2em($pixels, $fontSize: 16, $rem: false) { @if $rem == true { $unit: ...
0
votes
1answer
33 views

php function with optional parameters using stdClass

Suppose, I have a function such as: [$data is a stdClass()] function test_1{ ... ... if (somecondition){ $data->name = NULL; test_2($data->name); } else{ ...
0
votes
1answer
19 views

Enter each line user inputs with file. functions

n = int(input('How many tracks are in the album?: ')) for i in range(n): line = raw_input('Next Track: ') lines.append(line) Where it says line = raw_input('Next Track: ') is where the ...
6
votes
3answers
63 views

Function definition like range

Suppose I wanted to write a function similar to range Recall that range has a one argument and 2/3 argument form: class range(object) | range(stop) -> range object | range(start, stop[, ...
0
votes
4answers
54 views

hasClass doesnt function as should be

I have a list of li items and would like to trigger a button click if 2 classes are found. When a list item has 2 classes, I would like to trigger the btn with a click. Can you guys take a look for ...
1
vote
1answer
46 views

Can't get a function to work, have tried everything. Involves stripping punctuation and spaces

I am trying to remove the punctuation from a variable and it's not working, I have tried everything I can think of. I've very tired and I'm sure it's something I'm just not seeing. Any help would be ...
0
votes
1answer
25 views

Use Bing Quadkey tiles instead of x/y/z tiles in leafletjs map

I try to create a map with leaflet.js where it is possible to switch between different tile layers. It works great with tileservers that serve the tiles with the standard x,y and z(oom) schema. ...
0
votes
1answer
55 views

creating your own python code fixer (not debugger, although it could be used for that)

So I used to always code using hacks like if type(my_list[0]) == str, but then I learned of the isinstance method, and I got an idea: What if I could run my own search and replace function to make my ...
0
votes
1answer
21 views

NSIS call function once time if at least one section is selected

I have a function Function installDll ... EndFunction I have some sections : a b c d e f I would like call the function installDll once time if at least one of sections { a, b, c, d} is ...
0
votes
0answers
36 views

error jQuery commentsList is not a function

this is my first post on stackoverflow...let me say the first.. sorry for my bad english.. I'm getting this error on my jQuery... (function($) { $.fn.commentsList = function(options) { ...
3
votes
1answer
31 views

Wordpress: Removing the “Read More” link from a custom excerpt function?

Just a quicky here, I've created a function to limit the excerpt length for a specific post-type only (as I am having the excerpt for that specific post type show in a fading slider only) using the ...
0
votes
0answers
25 views

Excel countif retreive occurences references

I have a 3 list of number from 3 different sectors (areas). Each number can possibly repeat itself whatever the sector is : For instance the number "2" might appear 2 times in sector 1, 1 time in ...
1
vote
3answers
36 views

Count number of characters of every word in a string in PHP

I've managed to get the number of words displayed on different lines and i need the number of characters of each word next to the words separated by " - ". How can i do that? The string is from a ...
0
votes
3answers
34 views

Proper use of optinal parameters in JavaScript

We are using custom datetime picker which till now had to return both date and time. But now the conditions have changed and sometimes I need to return only date so I decided to add an optional ...
-2
votes
0answers
31 views

I want to call a forms function with a delegate from a class [closed]

I want to call a forms function with a delegate from a class. Could somebody give me a example how to do this. I know there are other ways too, without a delegate, but i must do it with a delegate.
2
votes
4answers
54 views

Click anywhere to remove class

The sample code is here: http://codepen.io/vincentccw/pen/loAwu Basically what I want to do is creating a custom dropdown list using tag but replaceable div button. My problems is once I click on ...
-2
votes
3answers
68 views

What do you call this function in PHP? [closed]

I was working on a project and I saw this function. I searched for it and could not find the right term and explanation. <?php $a = 'printf'; $a("hello"); ?> The variable $a is a string ...
1
vote
1answer
19 views

Handler for previous objects not working. Only last one works

I want to return a new handler every time for a new object that I create. This handler takes one object argument. function abc () { var handle = function(position) { // some code goes ...
0
votes
2answers
35 views

Function not returning correctly

I have this function: Tickets.prototype.each = function(func) { _.each(this.getTickets(), func); }; Tickets.prototype.findWhere = function(key, val) { this.each(function(ticket) { ...
1
vote
4answers
82 views

python single integer variable between function

Is there a way to exchange between child and parent functions a variable that is not a list? #parent list=[0]*1 singlevalue = 0 #child - 0 def test(): list[0]= list[0]+1 return list ...
0
votes
2answers
39 views

R: If the last column element in the previous row is NA, make current row NA

I am writing a function that will take the largest elements in a vector V.Size and output into a matrix N by N+1. My problem is when V.Size is smaller than N*(N+1). When this happens, the matrix ...
1
vote
6answers
79 views

Jquery function?

Before writing any jquery they always recommend us using $( document ).ready(function() {}); and place all our code within this function, but I noticed certain tutorial use this instead ...
0
votes
2answers
47 views

Minutes to Hours : Minutes [closed]

I am currently converting minutes to hours & minutes by using this function: function minToHourMin($time) { $minutes = $time%60; $hours = floor($time/60); return $hours . ':' . ...
0
votes
2answers
53 views

What am i doing wrong here? Defining a class with a pointer to function typedef.

Here is my code: // WorkDamnit.cpp : Defines the entry point for the console application. // #include "stdafx.h" class Scheduler { public: typedef void (*function_ptr) (void); struct ...
-1
votes
1answer
17 views

Not able to retrieve individual post meta values in Wordpress [closed]

I'm very new to post meta values and implementing them into Wordpress themes. Ultimately, what I'm trying to do is list individual post meta values on specific parts of a single post. But I'm having ...
1
vote
3answers
39 views

Lua - Execute a Function Stored in a Table

I was able to store functions into a table. But now I have no idea of how to invoke them. The final table will have about 100 calls, so if possible, I'd like to invoke them as if in a foreach loop. ...
0
votes
1answer
18 views

Call Back Function for Popup menu in Matlab

I have generated a popup menu without using GUIDE by using following code which works well: figure; row=4; String =sprintf('Video%d#', 1:row); String(end) = []; CString=regexp(String , '#' , ...
0
votes
1answer
38 views

Can you pass a subclass as an argument to a function with a superclass parameter? C++

I'm building a little C++ game (with SFML, but that's irrelevant for the most part), and I'm changing some code around to make it more reusable. I want to make a method that shifts a bunch of shapes ...
1
vote
3answers
27 views

Importing functions from classes outside original file

I'm working on a text based adventure game. One of the things that I want to do, is build the game using classes, have the main data classes in a separate file, and then have the actual main loop that ...
0
votes
2answers
26 views

Transform easing functions into moving objects on canvas?

I am trying to use these easing functions from this page; https://gist.github.com/gre/1650294 In my canvas project, I am wondering if anyone could shed some light on how to use these with say a ...

1 2 3 4 5 389