TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Math and Movies (Animation at Pixar)

58 点作者 nazri1超过 10 年前

2 条评论

arketyp超过 10 年前
I find it interesting that the interviewer almost calls out on the disappointing fact that the surface smoothness is essentially just "blobized" interpolation: "It doesn't seem very subtle." It's like when a director has run the film through some colorizing filter to give it a desired tone and you can tell to the point of it becoming distracting.
评论 #8612139 未加载
ivan_ah超过 10 年前
In case someone is interested in the &quot;eigenanalysis,&quot; the recursion formula is:<p><pre><code> [1&#x2F;2, 1&#x2F;2, 0 ] [A^n] [A^n+1] [1&#x2F;8, 3&#x2F;4, 1&#x2F;8] [B^n] = [B^n+1] [0, 1&#x2F;2, 1&#x2F;2] [C^n] [C^n+1] \_____ _____&#x2F; M </code></pre> And the question is, given [A^0,B^0,C^0], find [A^∞,B^∞,C^∞], which is equivalent to computing the infinite power of M. Waaaat? Enter the eigendecomposition.<p>The eigenvalues of M are 1&#x2F;4, 1&#x2F;2, and 1. If you compute M^∞, the 1&#x2F;4 and 1&#x2F;2 &quot;eigenspaces&quot; will disappear, so you&#x27;re left with the subspace of the eigenvalue 1. <a href="http://bit.ly/eigenex001" rel="nofollow">http:&#x2F;&#x2F;bit.ly&#x2F;eigenex001</a> M^∞ = Q<i>L^∞</i>Q.inv(), hence the [1,4,1] appears... very cool.<p>Sometimes procrastinating by reading HN actually helps with your work---today I&#x27;m working on problem sets for book 2 <a href="http://gum.co/noBSLA" rel="nofollow">http:&#x2F;&#x2F;gum.co&#x2F;noBSLA</a>