gpt4 book ai didi

matlab - Matlab 中最接近#define 的是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 19:14:03 25 4
gpt4 key购买 nike

在 C 中,我可能会这样做:

#define MAGIC_NUMBER (88)

int foo(int a, int b, int c) {
return a + b + c + MAGIC_NUMBER;
}

double bar(double x, double n) {
return x + n + MAGIC_NUMBER;
}

/*
* ...and so on with many kind-of-long functions using
* MAGIC_NUMBER instead of writing a literal 88 like so:
*/

double bar(double x, double n) {
return x + n + 88;
}

我应该在 Matlab 中做什么? (需要跨多个文件工作。)

最佳答案

你可以定义一个global variable或者声明一个只返回常量值的函数(第二种可能性看起来更好)。

关于matlab - Matlab 中最接近#define 的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2337934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com