gpt4 book ai didi

r - 如何简化这个程序?

转载 作者:行者123 更新时间:2023-12-04 11:24:06 24 4
gpt4 key购买 nike

主要功能如下代码:

#f is a function that has two parameters and returns one value:
f <- function(a, b) {
a * b
}

#x is a's value group
x <- c(1,2,3,4)
#y is b's value group
y <- c(4,5,6)

我想得到f(x, y)所有可能的值,结果应该是一个矩阵才能清楚。现在我正在使用 for 循环:

m <- c(NULL)
for (a in x) {
for (b in y) {
m <- c(m, c(a, b))
}
}
m <- matrix(m, 3, 4)

但这看起来真的非常非常傻。谁能提供更简单的方法?

谢谢。

最佳答案

outer(x, y, f)
# [,1] [,2] [,3]
#[1,] 4 5 6
#[2,] 8 10 12
#[3,] 12 15 18
#[4,] 16 20 24
outer(y, x, f)
# [,1] [,2] [,3] [,4]
#[1,] 4 8 12 16
#[2,] 5 10 15 20
#[3,] 6 12 18 24

关于r - 如何简化这个程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29272337/

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