3
votes
6answers
111 views
Define two functions, or branch within one?
I was reading about how to detect the encoding of a file in PHP, and on some blog or somewhere, it was suggested to do this:
if (function_exists('mb_detect_encoding')) {
function is_utf8($str) {
…
1
vote
3answers
26 views
How to disable eval function without going to php.ini file?
Hello All,
Is there a way to disable eval function without doing so from php.ini file.
I have tried ini_set function but even that doesn't work.
Basically I want my framework users to decide whether …
2
votes
4answers
156 views
Generics and Functions in C#
Here is some code, it won't compile but essentially want I want to create is a function that parses as CSV file and then converts the values in the CSV list to a specific type.
Func<string, …
0
votes
3answers
56 views
Javascript file- is function in error? Need help!
I am trying to see if my JavaScript file's function is written correctly in order to display "Sunday, December 24, 2006". So here is the function:
function XmasDays(thisDate) {
var XMYear = …
2
votes
5answers
135 views
Replacing a function definition in C
I'm writing a library in C. I'd like to know if there is a way to divert every malloc() call my library makes to a different "augmented" testmalloc() function that I provide without (significantly) …
1
vote
4answers
51 views
Simple Automatic Classification of the (R-->R) Functions
Given data values of some real-time physical process (e.g. network traffic) it is to find a name of the function which "at best" matches with the data.
I have a set of functions of type y=f(t) where …
2
votes
3answers
24 views
Alternative to returning mixed errors and booleans.
I have a (common) situation where I am currently returning a result that is a mixed type, sometimes a boolean, sometimes an error message. For example:
function checked_thing_is_legal(){
// Do …
1
vote
1answer
82 views
Plotting functions in R
Is there a way of overlaying a mathematical function on top of data using ggplot?
## add ggplot2
library(ggplot2)
# function
eq = function(x){x*x}
# Data
x = (1:50)
y = …
6
votes
1answer
96 views
How do you define a type for a function in Scala?
I'm hoping there is a way to define a type for a function in Scala.
For example, say I want a function that takes two Ints and returns a Boolean, I could define a function that uses that like this:
…
0
votes
9answers
124 views
Should a function’s comment include descriptions of work done by functions it calls?
Let's say I have a function called DisplayWhiskers() which puts some slashes and backslashes on the screen to represent an animal's whiskers like this: /// \\\.
I might write a comment for this …
0
votes
2answers
33 views
Dynamically Auto-Linking instance variables to object functions in javascript / jquery?
Hey all,
I'm trying to create a robust audio player in javascript (& jQuery). I know that there are other players out there, but I'd like to try creating my own (so please don't refer me to …
-1
votes
5answers
69 views
[Matlab] Storing Results of a Operation in a Matrix
Let's say I want to take the sin of 1 through 100 (in degrees).
I come from a C background so my instinct is to loop 1 through 100 in a for loop (something I can do in Matlab). In a …
2
votes
5answers
64 views
PHP function won’t execute when called
Hi all, I'm having a problem with this function. It's supposed to echo out some stuff, but for some reason it won't do so when I call it.
Here's the function:
$count = count($info['level']);
…
7
votes
5answers
260 views
Why should functions always return the same type?
I read somewhere that functions should always return only one type
so the following code is considered as bad code:
def x(foo):
if 'bar' in foo:
return (foo, 'bar')
return None
I guess the …
2
votes
4answers
75 views
Is it possible to replace a function in php (such as mail) and make it do something else?
I want to rewrite a function in PHP (let's say the mail() function), and want to make it so when I call mail() from now on, it will load my version of mail() and not the default php version. Is this …
