- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面的小代码输入了一个具有行优先排序和两列的矩阵。据我了解,我包含的宏将允许我以更自然的方式访问数组的条目(从 1 索引开始)。
#define Alocal(i,j) Alocal[ (j-1) + 2*(i-1) ]
void test_function(double* Alocal)
{
double a;
double b;
/* get first and second entries of the array */
a = Alocal(1,1);
b = Alocal(1,2);
}
现在我有两个问题:1) 假设我将一个整数 Ncols
传递给函数。这可以在宏中使用以获得更一般的定义吗?喜欢
#define Alocal(i,j) Alocal[ (j-1) + Ncols*(i-1) ]
2) 有没有一种方法可以定义将数组的特定条目设置为宏中的某个数字?喜欢
double d;
d = 3.4579;
Alocal(2,2) = d;
最佳答案
void
的方式),您至少可以将 MY_ARRAY_SET
宏放入 do{ ... }while(0)
block 。我没有特别注意你的指数计算,见Ben's answer
#include <stdlib.h>
#define MY_ARRAY_GET(array,i,j) ( (array)[ ((j)-1) + 2*((i)-1) ] )
#define MY_ARRAY_SET(array,i,j,x) ( (array)[ ((j)-1) + 2*((i)-1) ] = (x) )
void test_function(double* Alocal)
{
double a;
double b;
/* get first and second entries of the array */
a = MY_ARRAY_GET(Alocal, 1, 1);
b = MY_ARRAY_GET(Alocal, 1, 2);
MY_ARRAY_SET(Alocal, 1, 2, 42.0);
}
int main(int argc, char** argv)
{
double array[16] =
{ 1.0, 2.0 }; //Initialize to 1.0,2.0,0.0 ...
test_function(array);
return EXIT_SUCCESS;
}
尝试将其他答案和评论中的想法放在一起(VLA 和断言)。免责声明:这是一个概念证明,而不是我编写高效代码的方式。
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
//********************************************************************************
//Utility macros
/**
* @brief Internal macros to retrieve the dynamic size of a VLA dimension 1
* @param vla A pointer to the VLA is need in order to properly deduce its dimensions
* @warning for internal use only
*/
#define INTERNAL_VLA_SIZE_D1(vla) (sizeof((*vla))/sizeof((*vla)[0]))
/**
* @brief Internal macros to retrieve the dynamic size of a VLA dimension 2
* @param vla A pointer to the VLA is need in order to properly deduce its dimensions
* @warning for internal use only
*/
#define INTERNAL_VLA_SIZE_D2(vla) (sizeof((*vla)[0])/sizeof((*vla)[0][0]))
//********************************************************************************
//Debug check helper
int is_valid_index_2D(const size_t nrows, const size_t ncols, const size_t row, const size_t col)
{
return (nrows) && (ncols) && ((size_t) (row) < (size_t) (nrows)) && ((size_t) (col) < (size_t) (ncols));
}
//********************************************************************************
//1 based index loop macros
#define FOR_RANGE(type,var,start,end) \
for(type var = (start);var <= (end);++var)
#define FOR(type,var,count) \
FOR_RANGE(type,var,1,count)
#define MAT_FOREACH_INDEX(rowvar,colvar,mat) \
FOR(size_t,rowvar,INTERNAL_VLA_SIZE_D1(&(mat))) \
FOR(size_t,colvar,INTERNAL_VLA_SIZE_D2(&(mat)))
//********************************************************************************
//Matrix functions
//Note: These functions rely upon compiler warnings or errors regarding incompatible pointer types
// (i.E. for a wrong number of array dimensions)
void mat_set(const size_t nrows, const size_t ncols, double (* const matrix)[nrows][ncols], const size_t row, const size_t col, const double value)
{
assert(is_valid_index_2D(nrows,ncols,row,col));
(*matrix)[row][col] = value;
}
double mat_get(const size_t nrows, const size_t ncols, double (* const matrix)[nrows][ncols], const size_t row, const size_t col)
{
assert(is_valid_index_2D(nrows,ncols,row,col));
return (*matrix)[row][col];
}
void mat_identity(const size_t nrows, const size_t ncols, double (* const matrix)[nrows][ncols], double value)
{
for (int row = 0; row < nrows; ++row)
for (int col = 0; col < ncols; ++col)
(*matrix)[row][col] = row == col ? value : 0.0;
}
void mat_fprintf(FILE* stream, const char* const field_delim, const char* const field_format, const size_t nrows, const size_t ncols, double (* const matrix)[nrows][ncols])
{
for (int row = 0; row < nrows; ++row)
{
for (int col = 0; col < ncols; ++col)
{
if (col)
fputs(field_delim, stream);
fprintf(stream, "%.2f", (*matrix)[row][col]);
}
fprintf(stream, "\n"); //write a line break, the portable way
}
}
//Matrix utility macros, using 1 based indices
#define MAT_SET(mat,row,col,value) \
mat_set(INTERNAL_VLA_SIZE_D1(&(mat)),INTERNAL_VLA_SIZE_D2(&(mat)),(&(mat)),(row)-1,(col)-1,value)
#define MAT_GET(mat,row,col) \
mat_get(INTERNAL_VLA_SIZE_D1(&(mat)),INTERNAL_VLA_SIZE_D2(&(mat)),(&(mat)),(row)-1,(col)-1)
#define MAT_SET_IDENTIY(mat,value) \
mat_identity(INTERNAL_VLA_SIZE_D1(&(mat)),INTERNAL_VLA_SIZE_D2(&(mat)),(&(mat)),value)
#define MAT_FPRINTF(stream,field_delim,field_format,mat) \
mat_fprintf((stream),(field_delim),(field_format),INTERNAL_VLA_SIZE_D1(&(mat)),INTERNAL_VLA_SIZE_D2(&(mat)),(&(mat)))
#define MAT_PRINTF(field_delim,field_format,mat) \
MAT_FPRINTF(stdout,(field_delim),(field_format),(mat))
int main(int argc, char** argv)
{
#ifdef NDEBUG
fprintf(stderr, "assertions disabled\n");
#else
fprintf(stdout, "assertions enabled\n");
#endif
//Note: since below VLA is created on stack, we must be cautious about its size
for (size_t nrows = 1; nrows <= 5; ++nrows)
{
for (size_t ncols = 1; ncols <= 5; ++ncols)
{
//Allocate the matrix on stack
double matrix[nrows][ncols];
//Initialize matrix to identity
MAT_SET_IDENTIY(matrix, 1.0);
puts("****************************************");
//Print the matrix using a wrapped function
MAT_PRINTF(", ", "%.2f", matrix);
puts("****************************************");
//Print the matrix using nested loops with 1 based indices
FOR(size_t,row,nrows)
FOR(size_t,col,ncols)
{
printf("%.2f", MAT_GET(matrix, row, col));
if (col < ncols)
printf(", ");
else
printf("\n");
}
puts("****************************************");
//Print the matrix using a 2D foreach with 1 based indices
MAT_FOREACH_INDEX(row, col, matrix)
{
printf("%.2f", MAT_GET(matrix, row, col));
if (col < ncols)
printf(", ");
else
printf("\n");
}
}
}
return EXIT_SUCCESS;
}
关于c - C 中用于获取/设置数组条目的宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20083031/
如何在 Excel 中编写可以在我将打开的任何 Excel 文档上工作(使用快捷方式运行)的宏? 这可能吗? 最佳答案 您需要将宏添加到 Personal.xlsb 以使它们可用于所有 excel 文
我正在研究 problem #74在4clojure.com,我的解决方案如下: (defn FPS [s] (->> (map read-string (re-seq #"[0-9]+"
我还没有完全理解Clojure 箭头宏thread-first -> 和thread-last 宏->> 之间的区别。在阅读 https://clojure.org/guides/threading_
我想将一些调试输出语句插入到大型 C 代码库中。这些调试输出语句将由编译器选项开关控制。 调试输出语句如下所示: #ifdef DEBUG_FLAG Print(someSymbol) #endif
我正在通过宏将代码注入(inject)到 C++ 类中。有没有办法根据访问修饰符的上下文来做到这一点?有点像 #if (we_are_in_public_context) INJECT_PUBLIC_
这应该与 memoize 类似,但有很大不同。虽然 memoize 应该与纯函数一起使用,但它通常对加速 IO 相关函数很有用。 我正在寻找的函数/宏应该表现得像高阶函数。它产生的功能应该: 第一次调
对于下面的代码: let services: [MyServices] = [ MyService(), #if DEBUG DebugService(), #endi
假设我有以下文本文件 name: John Doe description: My name is John Doe and I'm really good at vim! name: John Do
在创建 Excel 宏方面需要帮助。我有一个 Excel 工作表。Excel 工作表不一致。我打算使它统一和结构化。 例如。 A B C
我正在 excel 中设置一个宏,以便在更新单元格时自动发送电子邮件。是否可以在电子邮件正文中包含单元格的内容?例如,如果单元格 G7 已更新,请在电子邮件中包含单元格 B7 的内容?单元格行将是相同
我创建了一个简单的 Excel 工作表。 这是我的宏代码: Sub MyMacro() Sheets("Sheet1").Select A$ = Cells(1, 1) Msg
在 Excel 的 VB 宏中,如何删除所有出现的以某个字符串开头的单词? 例如: 字符串内容为:xxxx $AUD543.43 yyyy 我想搜索以 $AUD 开头的字符串中的任何内容并删除下一个空
我是 Excel 宏的新手.. 谁能告诉我这个宏是做什么的? Sub People_Add_Document() prow = ActiveCell.row num = Cells(p
我对 Excel 中的 VBA 和宏非常陌生。我有一个非常大的 Excel 电子表格,其中 A 列保存日期。我正在尝试删除值小于某个日期的行,这就是我到现在为止的想法。 Sub DELETEDATE(
我在 Excel 2003 中有一个 VBA 对象,当通过流数据获得某些值时,它会触发三个简单的宏。它运行良好。我想打开一个重复的工作表,但具有不同的流数据,并在各自的工作表上触发宏。它现在可以使用,
下面的宏有什么问题?我只想评估一个选项卡中的一个单元格是否大于另一个选项卡中的另一个单元格。然后消息框: Sub Comhouse() If Worksheets("(2.2) TRA works
需要一个简单的 excel 宏的帮助。我在第 1 列 X1 到 X20 中有数据。我想自动将此信息粘贴到 A 列,然后当我更新 X 列中的数字时,我想将此信息粘贴到 B 列,然后再粘贴到 C 列...
我找到了以下代码,效果很好;但是,我必须手动更改月份,以便它转到第二个工作簿的右侧工作表。由于工作表以月为单位,我怎样才能使其自动更改为当月? Sub AlarmSheet() Dim wkb As
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。如需帮助澄清这个问题以便重新打开它,visit the help center .
我的公司只使用 MS Office 2003 产品,所以我必须坚持下去。由于我的工作性质,我需要使用很多“复制和粘贴”功能。源数据主要来自网站,我将数据粘贴到 Excel 中的单元格中。问题是剪贴板保
我是一名优秀的程序员,十分优秀!