Tagged Questions
1
vote
5answers
68 views
Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?
Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
1
vote
1answer
52 views
How to keep variable amount of numbers after decimals
I am using Excel 2007. I have multiple data sets with random number of characters in each row. For example:
A1 1.60
A2 0.008
A3 0.900
A4 1.0
A5 0.56
A6 1.703
I need to make it into a ...
1
vote
0answers
37 views
macro to check if the return value of a function is being checked
I have a function
void *custom_get_value(ObjectPtr)
This function traditionally never used to return NULL.It can return any of the following values
uint32_t
int32_t
uint64_t
int64_t
uint8_t
...
2
votes
2answers
77 views
Creating a macro that uses a function with a variable
Heres my code:
Dim N As Single
N = ActiveCell.Offset(0, 0).Value
E = 1 - N
ActiveCell.Offset(0, 1).Range("A1").Select
ActiveCell.FormulaR1C1 = "=-SUM(R[E]C:R[-1]C)"
ActiveCell.Offset(0, ...
0
votes
2answers
64 views
How to pass the result of a function as a Macro variable?
Say I've set up a macro expansion as follows...
#define WARN_START @"DANGER"
#define WARN_RESET @"THE COAST IS CLEAR"
#define WARN(x) WARN_START x WARN_RESET
INPUT WARN(@"*** Your boss is coming. ...
1
vote
2answers
87 views
c variadic functions confusion
I'm trying to figure out what's behind va_start(), va_arg() macroses. The code below works well.
#include <iostream>
#include <cstdarg>
void f(double a, double b, ...)
{
va_list arg;
...
1
vote
2answers
41 views
Is it possible to instrument matlab functions to automatically compare values of local variables across functions?
This is related to How to retrieve local variables?, but broader in scope.
The scenario looks like this. Suppose I have two functions
function [OutA OutB OutC] = F1 (x,y,z)
local1 = x + y - z ...
0
votes
1answer
24 views
VBA HasNextCell function
I have tried searching for a solution but cant find it.
I have a list of products, and each product has many parts. Is there a HasNext function in VBA to see if there are more parts for a product? ...
0
votes
2answers
39 views
Delete an Excel Column while inside another subroutine?
I have a Macro that concatenates the values in two adjacent columns. It works perfectly. I'd like to add a command to then delete the second column once the concatenation is complete. Can I do this ...
0
votes
0answers
72 views
Excel - conditional row hiding/outlining
I am trying to solve a problem - hiding unwanted rows when printing. I have a spreadsheet with two columns, A and B. Column A contains item names (e.g. "paper", "pencils", "rubber" ...) from row 3 on, ...
2
votes
2answers
66 views
Is it possible to use a macro in function prototypes and definitions?
I have a few functions sharing common arguments I want to pass across, so is it possible to use a macro to save me from repeatedly writing out the common arguments?
As an example, would the following ...
-1
votes
2answers
134 views
copying and sum cells with same value in a column [closed]
I need function or macro in excel to count cells with same data in a column:
mn3288a
mn3088a
mn3088a
mn3088a
mn3288a
3009-3001
LKE1
LKE1
LKE1
mn3088a
3001-3009
The result ...
3
votes
5answers
145 views
What's the safest way to define short function name aliases in C++?
Suppose I have a class Utility in a file utility.h:
class Utility {
public:
static double longDescriptiveName(double x) { return x + 42; }
};
And then I find that I use the function ...
0
votes
2answers
419 views
C++ Passing multiple arguments in one argument
This may sound confusing, but how can you pass MULTIPLE ARGUMENTS in one ARGUMENT.
What I've tried is the following:
#define CALL(v, look, param, expect) v(param){look(expect);}
Example when using ...
0
votes
2answers
2k views
Excel - Compare one column to another and display results
In Excel 2007, I have two columns, similar data (list of names). If the name is found in both columns I'd like to change a blank column to active. How can this be done?
Longer Description of what I'd ...
0
votes
2answers
84 views
Assigning an array to a function macro
I recently came across the below code where macro is defined as below
unsigned char cbuf[10];
#define pbuf() (&cbuf[0])
Can anyone please explain what is being done in the #define(macro ...
2
votes
1answer
118 views
Clojure: how to send remaining arguments “& args” into list?
Is there any (reasonable) way to write this macro as a function?
(defmacro assocTop
[v & args]
`(push (pop ~v)
(assoc (peek ~v) ~@args)))
Given a vector of ...
3
votes
1answer
66 views
How to check for accept4 using CMake
I am checking for accept4 on Linux like this:
check_symbol_exists(accept4 sys/socket.h HAVE_ACCEPT4)
However, accept4 is only defined if _GNU_SOURCE is defined beforehand. How can I force the ...
-1
votes
1answer
244 views
Validate Excel Columns Using VBA [closed]
I want to use macros / functions from Excel 2003 using VBA to make validation for column values. I have two columns: column A with predefined values for animals (Dog, Cat, ...), and column B for their ...
2
votes
2answers
361 views
Using preprocessor directives to define generic functions in C
I just came to C from C# and was looking for a way to define generic functions like those in C#. I came across this post but when I tried to compile it I get a bunch of errors ("`n' undeclared here ...
1
vote
3answers
78 views
Is the Macro argument a function?
I am trying to determine whether a given argument within a macro is a function, something like
(defmacro call-special? [a b]
(if (ifn? a)
`(~a ~b)
`(-> ~b ~a)))
So that the following ...
-1
votes
1answer
2k views
Find and copy cells from adjacent worksheet to current worksheet
I need to create a macro (or function) to copy cells from an adjacent worksheet to the current worksheet if they meet certain criteria.
Below is the worksheet adjacent to the current worksheet that ...
0
votes
1answer
74 views
Higher-order functions and short forms
Why we can write
(defn factory-foo [] (fn [] (println "foo")))
(apply (factory-foo) [])
but not:
(defn factory-bar [] #((println "bar")))
(apply (factory-bar ) []) ;throws NPE
Is this a bug?
...
1
vote
4answers
623 views
ABS(A) and abs(int)
I am baffled in the difference of this two in xcode, ABS(A) and abs(int). Cant seem to find ay explanation online as well. Which should I use? I am actually working on an accelerometer. Using ABS(A) ...
2
votes
3answers
208 views
Generate functions using Macros in C
I have the following macro:
‎#define GTR(type) \‎
type type##_gtr(type a, type b) \‎
‎{ \‎
‎ return a > b ? a : b;\‎
‎}‎
I understand that it generates functions, but if GTR(unsigned int) ...
0
votes
1answer
4k views
Excel Macro to concatenate multiple rows from Column B per ID rows in Column A with newlines
This problem is in an Excel .xls file.
Simplest Use Case:
Column A has one row.
Column B has 5 rows.
The 5 rows in Column B need to be merged into one row, delimited by newlines.
I have a huge ...
6
votes
1answer
200 views
Generating functions with macros in C++
I have the following macro that is intended to generate functions in the current scope or namespace:
#define MAKE_FUNC(FNAME) \
template <typename T> \
T ##FNAME## (const T& t) \
{\
...
2
votes
2answers
249 views
How to pass arguments to a variadic macro?
I have a variadic function:
LogWrite(FILE * fp, int level, const char * filename, const char * function, ...)
It should be called like this:
LogWrite(fp, int Level, __FILE__, __FUNCTION__, ...
0
votes
4answers
293 views
How to use templates instead of macros to create a class with a dynamic number of functions
Currently i am creating a base class with set and get functions with a macro.
But I would like to add more complex macros but macros are really bad for debugging so I would like to do it with ...
2
votes
1answer
432 views
Is there any terminology called “hypochecking” in C/C++?
I just came across below question on Internet:
Macros and function are related in what aspect?
(a)recursion
(b)varying no of arguments
(c)hypochecking
(d)type declaration"
I ...
9
votes
2answers
456 views
Why GCC keeps empty functions?
On the most cases if I want to create an optional feature in C, I simply create two functions like this:
#ifdef OPTIONAL_SOMETHING
void do_something(int n, const char *s)
{
while (n--) {
...
0
votes
2answers
119 views
How to use a value that is specified in a function call as a “variable”
I am wondering if it is possible in R to use a value that is declared in a function call as a "variable" part of the function itself, similar to the functionality that is available in SAS IML.
...
4
votes
4answers
2k views
C++: Empty function macros
If I define a function macro with no actual function, is it like an empty string with the compiler (i.e. It doesn't generate any extra instructions at compile time)?
Example:
#define SomeMacro(a)
...
5
votes
6answers
3k views
Macro vs Function in C
I'm programming in C.
I always saw examples and cases where using a macro is better than using function.
Could someone explain me with an example the disadvantage of a macro compared to a function?
3
votes
3answers
97 views
Is it possible to create named functions in Python similar to C macro?
Sorry for the confusing title.
I would like to do the following: (Similar to defstruct in Lisp)
def mkstruct(structname, field_dict):
# create a function called "structname" and get/set ...
1
vote
2answers
228 views
Odd macro and no operation variable usage? [closed]
What does this two snippet code mean here?
#define HTTPH(a, b, c, d, e, f, g) char b[] = "*" a ":";
void function(char *p) {
(void)p;
}
4
votes
1answer
111 views
Issue with function macro
The Practice of Programming book says:
One of the most serious problems with function macros is that a parameter that
appears more than once in the definition might be evaluated more than once; ...
-2
votes
5answers
136 views
Function resolution
I have a lot of functions with this signature:
DoSomething(int x, int y, int z, int t, int u, int p);
They all have the same number of parameters and the same type of parameters.
I want to be able ...
3
votes
2answers
345 views
Disable functions using MACROS
After searching quite a bit in the Internet for a solution I decided to ask here if my solution is fine.
I'm trying to write a simple and modular C logging library intended to be simple to disable ...
0
votes
1answer
209 views
Access macro not working?
I created a function in a module:
Public Function createTable()
Dim db As Database
Dim tdf As TableDef
Dim fld As Field
Set db = CurrentDb()
Set tdf = ...
4
votes
5answers
475 views
Is there a apply-function-to-region-lines in emacs?
A lot of my work involves searching and deleting unnecessary lines of code. So I create a macro, and then select all lines (C-x h) and then run the command (apply-macro-to-region-lines). I managed to ...
0
votes
1answer
580 views
Zipping lists together in Common Lisp - Problem with “and”
What I am trying to do is create a function zip (note now that this is not homework) that iterates through multiple lists simultaneously, applying a function to each list of elements, like so:
(zip f ...
1
vote
2answers
222 views
Find the number of function/macro calls under a compile time macro
I have this problem that i have to find how many times a specific macro/function is being called in my code? I know you might think why dont i run a find/grep. But my problem is that the ...
3
votes
2answers
255 views
Macros and functions in Clojure
I read the following line in this Clojure tutorial - http://java.ociweb.com/mark/clojure/article.html#Macros
'Since macros don't evaluate their arguments, unquoted function names can be passed to ...
2
votes
3answers
940 views
Objective-C: Function-Like Macro Vs. Method
In Objective-C, when do you recommend using function-like macros over class or instance methods?
1
vote
1answer
191 views
Common Lisp: how to dynamically wrap existing functions, such as for a profiler?
I am new at Lisp, and am trying different things out to improve my skills. I want to write a macro that wraps existing functions so that I can set up before and after forms for these functions, kind ...
3
votes
2answers
1k views
Is there a way to perform function inlining in MATLAB?
What language feature or outside-the-box hack can I use to accomplish function inlining in MATLAB? Annoyingly, a Google search for "matlab inline function" reveals that MATLAB's designers thought that ...
1
vote
2answers
162 views
Using a macro inside a loop condition
I am programing in C++ and I defined a variable as a macro, and I want to return a value from a function using the macro.
For some reason the compiler says that I have a syntax error. I am using ...
2
votes
3answers
1k views
Java, macro code, function address
I am beginner with Java, and I would like to write some code like this :
TEST(myfunction(1, 2, 3));
Where TEST is :
Either a macro as used in C
Either a function which need the address of the ...
2
votes
6answers
359 views
Can temporary functions/macros be created in PHP?
Take a look at the following illustration:
// Trims input, fixes spaces and encodes bad glyphs. Also works with arrays.
function prepare_param($param)
{
$retval = "";
function prc($param)
...


