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
1answer
36 views
How do I use jQuery to fire different functions while using @media handheld?
I am trying to make my website responsive. My website is essentially all one page and I use a simple jQuery scroll function to navigate to different sections. It works fine for desktop or laptop ...
0
votes
1answer
53 views
Search Form with PHP and mysql database [closed]
I am currently working on a website were I am storing specific information regarding home/property like number of bedrooms, size etc. into a database.
Now I am in the stage where I would have to ...
0
votes
1answer
29 views
Mysql error: Not allowed to return a result set from a function
I am trying to have a conditional change in a parameter for update statement.
I am getting the following error when I try the following function
/home/y/bin/mysql -u root < testpri.sql > out
...
-1
votes
0answers
30 views
fortran to matlab, how make subroutine argument's fortran in matlab
In the fortran code, I make subroutine VECT(N1,N2,N3,NOPN).
N1, N2, N3, NOPN is called from other subroutine,
the value is calculated using VECT subroutine.
The input data(N1,N2,N3,NOPN) is depending ...
0
votes
3answers
52 views
No matching function for call error
I don't understand what's wrong here. I've cut what i believe to be the non relevant part of the code to make it easier to read. The debugger shows the error below at the line "check(grid, n, q, ...
2
votes
4answers
40 views
Using a function as a callback or storing it?
I can do this
var element; // some html node
element.addEventListener("click", function() {
alert(1);
}, false);
Or this;
var clickFunc = function() {
alert(1);
}
...
-4
votes
1answer
68 views
I have a recursion function issue? [closed]
This is my first recursion problem and I'm not understanding it, nor does it work. Any ideas?
int C;
int myFactorial;
int n = Integer.parseInt(objectsChooseField.getText());
...
2
votes
3answers
72 views
How to run several looping functions at the same time in python?
i've been working on a project that i was assigned to do. it is about some sort of parking lot where the cars that enter, are generated automaticly (done) now, I've put them into a 'waiting list ...
-3
votes
2answers
68 views
Menu with functions
I have a question about functions with c language. I have a menu that inserts numbers calling a function but the problem is that i dont want to use a for, i want to insert the numbers one by one every ...
-3
votes
1answer
51 views
Code not showing return [closed]
I am trying to write a function definition for function maximum which returns the largest of three integers. But it is not returning the largest.
Here is my code:
int maximum( int x, int y, int z ) ...
0
votes
3answers
87 views
Get list of functions in a namespace at runtime?
Is it possible to get a list of functions in a certain namespace or all functions in a program at runtime?
I have a function pointer map and I need to add commands on my own to it, but I thought: why ...
0
votes
2answers
27 views
How can I pass input to a function, then have it use that input across 5 internal functions that are chaining each other?
This is essentially 2 questions I think.
How do I make all internal functions use the same raw_input?
How do I chain functions with that input?
I've been trying to make something that will make a ...
-3
votes
1answer
44 views
Typeerror, includes ' None' and 'float' issues [closed]
So, this is the section of my program that doesn't seem to work. Just some background to it, its meant to graph flow rate on the y axis vs varying radius on the x axis.
elif choice==4:
...
-4
votes
1answer
124 views
Function add two binary numbers in c++
In c++, how I can write a program that read 2 binary numbers then print the result of addition, using a function to read the binary numbers each number has 4-bit, and using a function to add (binary ...
-4
votes
1answer
101 views
C language Function errors
I use C language and I need to write a program with the different function.
I have some problems with it and didn't find solution.
I have 2 kind of function.
This one
int X(int i, int k){
...
0
votes
2answers
39 views
Python: Using run time inputs to change key values in a function
import sys
def fun( a=7, b=1 ):
print a, b
fun()
fun( a=5 )
fun( sys.argv[1:] )
The first fun() prints out '7,1', the second prints out '5,1', but the third prints out '['a=8', 'b=6'] 1]'. I ...
-2
votes
0answers
267 views
Python tkinter function plotter [closed]
I need help some help to help out a friend of mine. I have to satisfy all of these classes.
PointFrame Class
This class defines a display widget for showing the cursor position of the last
left ...
0
votes
0answers
11 views
jQuery help - calling a function / plugin
I'm trying to write a form with jQuery functionality that allows a visitor to login, resend their activation email or reset their password.
I've got it working but it's very cludgy and I wanted to ...
0
votes
1answer
39 views
undefiend function or variable
I worte like that; I got an error message, " Undefined function or variable 'MATM'"
'MATM' is function and no probs in other function. How can i do that?
function FUNC
global LNODS COORDI SHAPE ...
0
votes
1answer
32 views
Multiple buttons to call same function in python Gtk
I am developing a small application using Gtk-Python, in which i have some 10 to 20 buttons, and when any of them are clicked, i want the value of the button to be appended in the text box I have done ...
0
votes
1answer
27 views
Actionscript 3 returns Error #1009
I am creating a shooting game. I have encountered a problem with my code when I decided to create a method to remove the missile after reaching the top of the stage. I can run the program without any ...
4
votes
1answer
35 views
Writing SQL Insert Function
I'm trying to create SQL function which would add entry to a table. Before adding a new user I would like to check or this user isn't in a table already. I wrote some code, but can't save it as I get ...
0
votes
0answers
10 views
Sync Days with Months in a Html form
I am trying to make my form update so that when you click on a month from a drop down list it updates to have the right number of days in the day drop down list.
here is my function.
function ...
9
votes
3answers
149 views
Is it possible to make a JavasScript function act as if it was a string, no ()
Is this possible or am I barking up the wrong tree here?
var data = 'one';
function fnc(){
this.out = function(){
return data;
}
}
var instance = new fnc();
alert(instance.out);
data ...
0
votes
3answers
56 views
Looping Function to Define variables [closed]
Im trying to create a function that takes a list and assigns each of the strings in the list to a variable even when you dont know how many strings are in the list
Here is something i tried:
...
0
votes
2answers
30 views
Touch function in postgre sql with postgis
I have posgresql installed with postgis, I try to run the following in postgresql:
SELECT N1.edname AS "Borders Royal Exchange A"
FROM eds_census2011 N1, eds_census2011 N2
WHERE Touch(N1.the_geom, ...
0
votes
1answer
17 views
Radio Button choice to prefill specific text to Textarea to then be parsed to server
The long and short of what I need to be able to do is to have HTML that consists of five or more radiobuttons. Based on the radiobutton choice, a freeform textarea will then be filled with text of my ...
0
votes
1answer
26 views
How do I print these return values from function in Python 3?
I have a homework assignment for raquetball simulation. I'm trying to figure out how to expand the program to account for shutouts and return the number for each player. I added a loop into the ...
0
votes
3answers
40 views
C++ Lookup of i changed for ISO
I have the following code for a dictionary.
void Dictionary::translate(char out_s[], const char s[])
{
for (int i=0;i<numEntries;i++)
{
if (strcmp(englishWord[i], s)==0)
break;
}
if ...
0
votes
3answers
54 views
JavaScript function problems
I can't get this to display an alert fed as a function argument. I have compared to examples and can't see the problem causing it not to work. I have included my html and JavaScript below, any help in ...
0
votes
5answers
58 views
Accept different types in python function?
I have a Python function that does a lot of major work on an XML file.
When using this function, I want two options: either pass it the name of an XML file, or pass it a pre-parsed ElementTree ...
0
votes
1answer
34 views
Return a large array from a function
I have a class for an app that manages its database fetches. Instead of working with the result set (PDOStatement) in the class and echoing out the html from there, I'd like to return the result set ...
0
votes
0answers
29 views
How to use threading in callback functions with python
I have a class that uses the APScheduler python module to schedule jobs to be run. The callback
function that I use actually is a class method that sends and receives data from the serial port ...
0
votes
1answer
28 views
Insert values from database into select option
i want to put some fields from my database into select options. Therefore i made a function, nl showProjects. I want to show these options but my form isn't showing that values. I don't know where my ...
0
votes
2answers
32 views
Center image inside image using imagecopy function
I have a simple script that adds an image inside an image. Here is the code:
<?php
$im = imagecreatetruecolor(650, 400);
$stamp = imagecreatefrompng('test.png');
$red = imagecolorallocate($im, ...
1
vote
1answer
29 views
MinGW Main routine
In C there is no main program. Sure, C programmers begin with int main(int argc char *argv[]), but this only works because there is a routine that tells the compiler/IDE to run the function named main ...
0
votes
3answers
37 views
iOS NSDictionary pass through function
I have my view controller named SecondViewController and when user selects which article wants to read, I want to navigate to ThirdViewController and pass NSDictionary with article data.
- (void) ...
0
votes
1answer
34 views
Change variable inside function foreach loop
I've a problem that i can't solve. I think it's an easy fix, but after 3 hours of searching and trail-error. I've decided to ask the question over here:
This is my time function for a schedule ...
0
votes
1answer
68 views
Using a Javascript object in an if statement
Hi I'm fairly new to Javascript code and can't seem to get some code to work, any help would be really appreciated
I'm trying to pass an object property into an if statement using a function argument ...
0
votes
3answers
24 views
Call base Class function
say I have :
File BaseFoo.php :
require('MyClass1.php')
class BaseFoo(){
function check(){
//do somme stuff
}
function f1($o){
$c = new MyClass1();
return $c->f1($o);
}
...
0
votes
1answer
17 views
Add a local variable to an actionscript or javascript function
First of all, it is my understanding that appart from some syntax javascript and actionscript operate in a very similar way regarding functions. And in both languages I have the need to add a local ...
-3
votes
0answers
12 views
how can I set a function to exit and show sorted file while saving sorted file
I dont know how to set exit
sourcedir=/pub/cs/gboyd/cs160b/class/studentlist
localfile=${pwd}Managers
NEED HELP OVER HERE how to SET my EXIT
function to let user enter again new=$(sort -t: -k3 ...
2
votes
1answer
29 views
Unable to add to array from function using arguments
I have a function getPrice($_SESSION['external']);
function getPrice($position)
{
//Here I perform SQL functions using $position['arraykey']
//This works
//Here I want to ...
2
votes
2answers
69 views
MATLAB: How do I graph multiple functions on the same graph?
How can I graph multiple functions on the same graph/plot/Cartesian plane on MATLAB with domain and range restrictions?
For example I made up the following functions below. How would I graph the ...
0
votes
1answer
25 views
explaination of steam script function [closed]
i have downloaded a script file which downloads steam engine, dependencies and then install them. i am trying to understand what code is exactly doing. i have understood some part of it, but could not ...
2
votes
2answers
81 views
Is it possible to get the length of a string including literals
For example "hello\0world" would return a length 12 because there are 12 characters in the string.
0
votes
2answers
68 views
Python more functions
I would like to separate this into several smaller functions in order to make it look tidier and easier to read, but whenever I try this I cannot seem to get it to work. Any help would be appreciated.
...
0
votes
2answers
46 views
Execute private function inside the class by its name (string)
At the moment I have simple JavaScript class like this:
function MyClass() {
// ... some code ...
this.Create = function() {
funcName = 'myTestFunc()';
cTimer = setTimeout(funcName, 1000);
}
...
-2
votes
0answers
11 views
Micro Function Points vs IFPUG FPs
Does anyone has practical experience in Micro FPs ? I am working on IFPUG's FPs and want to know if there is any co-relations between them.
1
vote
1answer
41 views
Counting word “pairs” in excel between different columns
I'm wondering if it's possible to do this in excel:
Let's say I have these columns:
Column A | Column B
Apple | Red
Apple | Green
Pear | Green
Pear | Green
Is it possible for me to count how ...



