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
3answers
16 views
Python, can't find function
At the moment I am taking an online course for python, only about 1/3 the way through and I decided to try and make something with what I've learnt so far. Running into an error now though. I am ...
0
votes
0answers
5 views
Sass extend with pseudo selectors
I am using compass to manage some sass files on mac osx. I have these files:
sass/
screen.scss
partials folder/
...
_fonts.scss
_functions.scss
...
0
votes
2answers
23 views
How to set distinct result values in Delphi function?
I'm coding this function and for the line where I set result := -10 compiler gives me a warning saying such value is never asigned. Is there something wrong about my logic?
function combine (m1, m2 : ...
0
votes
1answer
40 views
C++ Member Functions and Constructor problems
#include<iostream>
#include <string>
using namespace std;
class Car{
private:
public: Car(int, string, int);
Car(){} //default constructor
void setbrake();
void setacc();
...
-1
votes
1answer
40 views
PHP - Variable, only text allowed
I am making a website (dah), and I need to have a function.
That function would make the string in only text.
Like:
$string = "Hello world<div width="100000">aaa</div>";
In html, ...
-1
votes
0answers
17 views
A function that changes a given vector
I'm creating a function which can change a given vector from 50th position (i.e. time series).
I had something like this:
LS=function(series) {
a=Arima(series,c(1,0,1))
e=residuals(a)
...
0
votes
5answers
37 views
remove word from string by position from input
EXAMPLE:
input = 2
text = aa bb cc
Will become: aa cc
The input for position is $_POST['position']
i have
$words = explode(" ", $_POST['string']);
for ($i=0; $i<count($words); $i++){
...
-3
votes
1answer
29 views
show only the words from a string that have a given length in input in PHP
The words are displayed on different lines, and i need only the words that have a given length in input. The input for length is $_POST['length'], and the input for string is $_POST['txt']. How can i ...
0
votes
1answer
22 views
VBA, Dir Function, Filtering to avoid files
So basically the intent is the use a VBA dir function in a directory, get the file names in that directory, but avoid/filter out getting a certain extension. e.g., I'd like to get all the files in a ...
0
votes
2answers
68 views
Returning a const string from a function in C
I have the following code:
const char * func_journey ()
{
const char * manner = "Hello";
manner = "World";
return manner;
}
int main()
{
const char * Temp;
Temp = ...
0
votes
0answers
6 views
Method/function return type in call stack
I was trying to find the existence of return type constraint in method call stack. Event any language you use, (java / c++), we specify the return type of method/function. When this method enters into ...
0
votes
0answers
8 views
What does function theme_menu_tree do in drupal?
What the function theme_menu_tree( $variables ) do in Drupal ? I checked theme_menu_tree and it says Returns HTML for a wrapper for a menu sub-tree.. What does this means?
1
vote
2answers
38 views
pause function until enter key is pressed javascript
new to javascript. i know this might be really simple but I can't figure it out. I want to execute a function. Pause in the middle of the function and wait for the user to hit “enter” key which will ...
-3
votes
1answer
57 views
Handle offfsets in a function
I am dealing with different offsets for different inputs.
1st set : 0, 8, 16, 24, 32, 40, 48, 56 vertically at positions 0,1,2,3,4,5,6,7 in a matrix of size.
2nd set : above offsets each multiplied ...
-2
votes
1answer
55 views
oracle pl/sql compare value against database in function
I have several names like:
john arnold
edward albert
And I have a name dictionary like this:
name
---------------------------
john
arnold
edward
I wrote a function to split the name in ...
0
votes
2answers
22 views
Can we create recursive functions only by using if-else statements?
I have to show if a program containing only if-else statements is able to calculate the following type of functions: [f(x)]^n. The function f is applied n times on x, so I guess this is a recursive ...
0
votes
1answer
17 views
PHP wordpress excecute a function within a shortcode
I have created a function that gathers all the images from a set of posts. I'm trying to add those images between an opening and closing shortcode that creates a slider.
Here is what I have so far - ...
0
votes
5answers
25 views
Can I/How to… call a protected function outside of a class in PHP
I have a protected function that is defined within a certain class. I want to be able to call this protected function outside of the class within another function. Is this possible and if so how may I ...
0
votes
2answers
28 views
JS/jQuery : Re-using a function, preventing multiple function calls
Please excuse my ignorance, I only started writing javascript recently. I am not looking for an out-of-the-box solution, but more some insight that will help me to write the code myself.
I am working ...
0
votes
10answers
47 views
Get ID of Element Being Clicked and Pass as Parameter?
How does one, through jQuery, get the ID of an element that is being clicked on and then pass it as a parameter into a function? Example jQuery code below.
jQuery(document).ready(function() {
var ...
2
votes
8answers
84 views
Is there a way to set a variable accessible for different class and function in C#?
I am creating a project in Visual Studio 2010 using C#.
I have my main (program.cs) and several different classes in different file (class1.cs class2.cs class3.cs), and each class has its own ...
0
votes
1answer
20 views
Finding a point on a graph
ok so I have a graph that has a steady increasing slope, much like an exponential graph. It then hits a point where the slope changes to a steep line, much steeper than a y=x graph. My question is, ...
0
votes
1answer
16 views
Adding body classes with Wordpress PHP function
I am using a script to dynamically add classes to the body tag. I am trying to add an additional fixed (non dynamic class). I simply need to add a class of loading the body.
This is the function that ...
-1
votes
6answers
83 views
How do I write functions which accept two-dimensional arrays when the width is not known at compile time?
Is it possible to write a function which accept 2-d array when the width is not known at compile time?
A detailed description will be greatly appreciated.
0
votes
0answers
15 views
Sencha Touch 2: launch() function doesn't fire
Can anybody explain me why this function
launch: function(){ console.log('launch'); },
doesn't display 'launch' word in the console?
There are no errors in the console.
Seems like I use it in a ...
-4
votes
0answers
27 views
need help on converting c++ coding to javascript (multidimensional array) [closed]
i'm new in this, but i need some suggestion about my coding. apart of my program, i have this function that will shift the column of number that is created using 4x4 multidimensional array:-
void ...
1
vote
6answers
106 views
C# Return var from function
I want to use modular programming in C#. I tried to create a method with a Linq query. As far as I know I need to store the Linq query in a variable in order to execute it. I created a class and ...
1
vote
2answers
28 views
Is it possible to load / require only one function form a large Ruby module?
I wrote a quite big ruby module, it loads in about 3-4 secs. Most of the times I need only one function from it. To speed up things, is it possible to load / require only that particular function form ...
1
vote
2answers
40 views
Are two instances of return in Python problematic?
Background:
An exercise on Codeacademy calls for creating code where a cube function returns the variable cubed.
Then, when that function is called by the function by_three, the authors suggest ...
0
votes
1answer
14 views
Switching to assigning functions to objects on windows.onload rather than explicitly. Experiencing difficulties
[Utitlizing Visual Studio ASP.Net with C# on ie]
I have been attempting to switch away from explicitly assigning events on my objects, to move towards Unobtrusive JavaScript. However, I can't seem to ...
0
votes
6answers
88 views
Using 'memcpy' function
To copy an array b[] into the array a[], one can use function memcpy as follows;
memcpy(a,b,sizeof(a)).
But memcpy simply copies bytes from one place to another.
My questions are:
1.How ...
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
31 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
38 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
60 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
38 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
43 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
49 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
77 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" ...
0
votes
2answers
20 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
15 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
29 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 ...





