04 2021 档案
摘要:dot product一般表示为两个vector点积,结果为标量。 matrix product表示为两个matrix矩阵积,结果为矩阵。 matrix product可以理解为多个dot product; 而dot product也可以理解为一维matrix的matrix product。 htt
阅读全文
摘要:简单来说,expression是表达式,不是程序。 如 3 + 5, (let b = 3) in b + 5 而statement,可以理解为最短的程序。 如 a = 3 + 5 ( let a = 3 + 5) https://stackoverflow.com/questions/472807
阅读全文
摘要:可以用 readlink -f file 也可以用 realpath file
阅读全文