向量的一种特殊乘法 element wise multiplication

Posted GameSprite

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了向量的一种特殊乘法 element wise multiplication相关的知识,希望对你有一定的参考价值。

物体反射颜色的计算采用这样的模型:

vec3 reflectionColor = objColor * lightColor;//物体反射颜色 = 物体颜色 * 光源颜色。 (vec3(r,g,b), r,g,b在[0,1]范围里)。

比如:光源是自然光:lightColor = vec3(1.0,1.0,1.0);物体是绿色的:objColor  = vec3(0,0,1.0,0.0);

反射光就是:reflectionColor  = vec3(1.0,1.0,1.0) * vec3(0,0,1.0,0.0) = vec3(0,0,1.0,0.0);(绿色,2个向量的分量对应分别相乘)。

这种向量的乘法方式有一个名字叫: element wise multiplication;

以上是关于向量的一种特殊乘法 element wise multiplication的主要内容,如果未能解决你的问题,请参考以下文章

论文解读-Long Short-Term Memory as a Dynamically Computed Element-wise Weighted Sum

线性代数——矩阵乘法(续)

线性代数回顾

吴恩达《机器学习》课程总结_线性代数回顾

DolphinDB 中矩阵和向量的元素乘法

线性代数基础知识.md