A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.
0
votes
0answers
23 views
Called function clears changes of previous one
I'm working on a cellular automaton where changes happen in every rounds. Obviously, I made a loop for it - basically it works, fortunately, but if I want to add another type of cells to the map, one ...
0
votes
1answer
15 views
Flash Error #1009 on mouse click
I have a movie clip called AndroidEye2, which has 4 frames.
I have this code on my 'Main Menu' Scene:
function eye1(e){
AndroidEye2.gotoAndStop(2);
}
function standStill(e){
...
0
votes
0answers
26 views
Use Ajax to call php function with paremeters
First off - NO JQUERY. I hate that thing with a passion and I can't possibly imagine how a native code implementation would be less efficient.
What I am after is a way to call any PHP function from ...
0
votes
3answers
39 views
Is it possible to access original function which has been overwritten in python [duplicate]
I was asked to add some feature to the code originally written by other guys.
There is a python code defines a function which overwrites the build in open function
def open(xxx):
...
I would ...
0
votes
0answers
10 views
How to check string one by one in string array
I have a string [] array in which i have many strings. Now I have class in which i have a functions where i want to check one string at a time make some conditions and fetch its output and store it ...
0
votes
1answer
14 views
Get category ID after creating a category - wordpress
I am creating two categories within my functions.php file when my Wordpress theme is activated like so:
/**
* @desc Create categories on theme activation
**/
function create_my_cat () {
if ...
-1
votes
1answer
30 views
Special character validation
I have some javascript written to validate that a string is alphanumeric but i was just wondering how i could add some code to include hyphens(-) and slash's(/) as acceptable inputs. Here is my ...
1
vote
1answer
29 views
PHP file - Populating a dynamic <select> tag with values from a database issues
Okay my problem is i have a form which contains a select tag which needs to be dynamically populated from a Database, the values populated are determined by the postcode/zipcode a user enters WITHOUT ...
0
votes
2answers
15 views
Execute Immediate : Encountered the symbol
i am currently getting this error ORA-06550 PLS-00103 Encountered the symbol "VERSION"...
Can any one help me rectify this problem? Much appreciated!
declare
sql_stmnt VARCHAR(200);
lsparameter ...
0
votes
1answer
15 views
Android - Function execute listener
Hey i don't know if that's the right way to do it but if it is how can i do it...
I have one abstact class with AsyncTask
public abstract class A{
A(){
new Task().execute();
}
public ...
3
votes
1answer
80 views
Exception safety of std::function
I tried without success to find if this code could throw an exception :
std::function<void(void)>f=[]{};
According to the standard, the copy or move constructor of std::function are not ...
3
votes
4answers
68 views
function assign to variable in C
Why the following code return error when variable is declared global.
int add(int x, int y) {
return x+y;
}
int ab = add(10, 20);
int main(void) {
printf("%d", ab);
}
But if I call like ...
1
vote
1answer
29 views
Mysql function to return row count from a procedure call
I am trying to write a function to return the number of rows a call to a stored procedure would return. I'm trying to minimise repetition of the code (for reduced code maintenance/debugging- the ...
0
votes
1answer
16 views
Yii Creating an audit trail; Controller to another Controller
I'm creating an audit trail module for a project using Yii php, and i'm quite a newbi.. and as we all know audit trail is concerned with the creation of history, transaction logs... i've created a ...
2
votes
2answers
33 views
How do I store an Object's functions pointers in an array?
I am trying to store function pointers of an object's functions in an array.But it's giving me problems when I want to access another property of the object within the function.Could any one solve ...
0
votes
0answers
17 views
Calling C functions from fortran
I'm trying to call C functions using fortran (need this for a project).
So first was trying to simply call a non parametrized, void function via fortran.
Kindly help me resolve the following errors ...
0
votes
2answers
43 views
Idea on how to create a C function that takes a character string and returns a character string with date and time
I'm pretty much new to C and I would like to write a function where it takes a character string and returns a character string with current date and time in the front. I need it for some logging ...
0
votes
0answers
8 views
Wordpress - Showing And Not Showng Category On Breadcrumb
I have this code in function.php
elseif ( is_single() && !is_attachment() ) {
$cat = get_the_category(); $cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo ...
0
votes
1answer
57 views
C++ Infinite Loop causing a stack overflow error?
Okay, so I've been working on my calculator. I am currently trying to get it to tell the difference between a valid integer and a character. As an easy workaround I did:
int calc()
{
cout << ...
0
votes
1answer
29 views
How to receive python's array in function
How do I receive an array (like numpy ones) into a function? Let's say the array a = [[2],[3]] and the function f. Tuples works like this:
def f((a ,b)):
print a * b
f((2,3))
But how is it ...
1
vote
3answers
27 views
Javascript function with vars on PHP print: quotes
I was just wondering if there is a better way to write down this PHP vars passed to a javascript function called inside a PHP print.:
while($nav = mysqli_fetch_array($nav_db)){
print '<li>
...
1
vote
2answers
48 views
Python 101: Is a function call an expression?
According to this answer, a function call is a statement.
But in the course I'm following in Coursera, they say a function call is an expression.
So this is my guess: a function call does something, ...
1
vote
2answers
39 views
I need the closest smaller value in mysql table
I'm making experience points based rank system for my mmorpg. Let's say I have 2 tables,
table1: username - exp
table2: rankname - exp
each rank require a specific amount of exp to get promoted ...
-2
votes
0answers
10 views
What should I change the code of line 456 to in order to eliminate the “Function ereg() is deprecated” error? [closed]
Here are the errors:
1. Function ereg() is deprecated
8192 in line 456 of file .../public_html/libs/model/datatypes.class.php
Here's line 456:
if(!preg_match("/\/\?/isU", $argv_string) ...
0
votes
0answers
53 views
trying to sort a txt file in c++ using a function and writing it back out to a txt file
void insertionSort (int arrtosort[], int size)
{
int temp = arrtosort[0];
for(int i = 1; i < size; i++)
{
temp = arrtosort[i];
int j = 0;
for(j = i; j > 0; j--)
if(temp ...
1
vote
0answers
42 views
PHP Error for looking through table? [closed]
So the function is below that will be used to get a guest's status in relation to an event. It is surrounded by other functions that work, but for some reason the first three lines of it is reporting ...
0
votes
0answers
13 views
Dreamweaver Java coding, one of my functions refuses to run/update
Ok so I am creating a website for my new company and I am nowhere near as skilled as I need to be to create this thing.
So my website is for my custom computer company and I am trying to create a ...
0
votes
2answers
38 views
Understanding the apply method example in functional programming in Eloquent JavaScript
I am reading the Eloquent JavaScript and I got to Functional programming (chapter 6). I am confused by the following example:
show(Math.min.apply(null, [5, 6]));
function negate(func) {
return ...
1
vote
1answer
27 views
PHP explode function blank array element
I'm having a few issues with the php explode function.
The string i want to explode is:
,.stl,.ppl
Currently, i'm using the explode function as such:
explode(',',',.stl,.ppl');
Unfortunately ...
0
votes
3answers
28 views
PHP variable is not accessible in HTML template
index.php
<?php
$title = "World";
echo loadTemplate();
?>
Template.php
<?php
function loadTemplate(){
return <<<EOF
Hello {$title}
EOF;
}
?>
On running ...
1
vote
2answers
22 views
PostgreSQL: Call a Function More Than Once in FROM Clause
How can I call a function which returns records more than once in FROM clause? I understand that I have to specify a 'column definition list' when using a function that returns records. But how can I ...
1
vote
2answers
27 views
using getopts inside a bash function
EDIT: corrected my code snippet to try $OPTARG, to no avail
EDIT#2: OK turns out the code is fine, my shell was somehow messed up. Opening a new window solved it. The arg value was indeed in ...
1
vote
2answers
49 views
2D arrays passed through functions in c
I'm having a problem with my program. I need my program to read from a text file, the first consists of the dimensions of the 2d array the rest is the contents of the array. I have coded the readWord ...
-1
votes
2answers
28 views
mark only one picture [closed]
hey here is a list of pictures:
<img src="inventory_images/pic1.jpg" onclick="changeColor(this);" />
<img src="inventory_images/pic2.jpg" onclick="changeColor(this);" />
<img ...
1
vote
3answers
40 views
How to evaluate a function at a point in Matlab?
For example, if I have a function f(x)=x^2, how can I evaluate it at x=2?
I have tried employing the symbolic toolbox and using the following code in the Command Window:
syms x;
f = sym(x^2);
...
0
votes
1answer
30 views
php return array from function returns NULL
Still just learning PHP so sorry if this is stupid!! I have a function that loops through a mysql adjacency table. I would like to return this as an array. It seems fine, in that if when I return in ...
0
votes
1answer
22 views
Getting variable from a function
function isEven(x)
print("Checking if "..x.." is even.\nWill return state as 1 if true.")
if math.fmod(x, 2) == 0 then
state = 1
end
return state
end
I know that I can just ...
0
votes
0answers
37 views
jQuery - reset dropdown on submit - Firefox and IE
Using jQuery & have multiple dropdown boxes on a web page & populate them from results returned from a SQL query. Each one is populated in the success portion of an AJAX call. One of the ...
0
votes
3answers
39 views
If making a jquery function callable on a selector, how do I retrieve the selector in my called function?
I'm trying to make a function callable on a jQuery selector.
Here is what I'm doing on my page:
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>first</title>
...
-1
votes
4answers
145 views
how can I make string equation? [closed]
I need a function public Func<double,double,bool> StringToEquation(string equation); that takes string and make it function. for example, the string xy = y^3 * (sin(x) + ln(x)) + pi will become ...
0
votes
1answer
16 views
passing user defined member function with mem_fun_ref()
i got through with passing normal methods and functors as arguments, how ever i got stuck with passing member variables.
#include <iostream>
#include <string>
#include <vector>
...
1
vote
2answers
38 views
vim function external call
Currently my vimrc has the following key mappings:
map <leader>m :w\|!clear && rspec --drb %<cr>
map <leader>k :w\|!clear && rspec --drb ...
0
votes
1answer
57 views
How can I set the value of an uninitialised pointer in a function in C?
I'm currently doing an assignment in C and it's the first time that I've really had to understand pointers. I'm mostly getting the hang of it, but it's thrown me into the deep end (at least in my ...
-5
votes
2answers
24 views
Using Right and Left Arrows to move pages [closed]
I have an idea for my website, and this page: http://www.goldtardis.com/doctor-who-series-seven-episode-ten---journey-to-the-center-of-the-tardis.html#.UZoBQLWiSSr
I want to be able to move to the ...
0
votes
1answer
35 views
window.width() doesn't work properly on lower screen resolution
I want to run a function if right side of a div is clicked, and another function if left side is clicked (div is horizontally centered inside html).
$("#div01").click(function (e) {
if (e.pageX ...
3
votes
2answers
59 views
How to pass a value in a return function as an argument on another function, use it in and then call it appropriately C++?
I would like to know how to pass a return function to another function as an argument so that I can use its value.
Example:
int childFunction(int a, int b)
{
int c;
c = a + b;
return c;
...
1
vote
1answer
24 views
Python: Function simplifying the input instead of passing string
I need to enter a complex string for handling (UTC time code) and breaking down as part of an assignment. I have started the function like this as required:
def convertWmiDateTime(wmiDateTime):
But ...
0
votes
1answer
19 views
calling another list function in couchdb
Helo Folks,
I am working on a view in couchdb. And, in the 'extract' list function, I'm trying to filter out some information using that view (myView). From the client that connects to couchdb, I ...
0
votes
0answers
51 views
javascript: how to use different parameters?
I am supposed to make a variable description of a product using parameters. How do I make a function tell the parameters apart?
Parameter example:
buildProduct('HP 4426', '4426','Newest and Best ...
1
vote
2answers
49 views
How to use the function .toggle?
How to make a reversing animation with .animate?
I read in others places about the function .toggle, however when i used it, this function starts automatically without the "click". I want it (the ...






