自动扩展我的 Excel 表格(+公式)
我创建了一个执行数学算法的 Excel 表格。 有用!但我当前的表假设方程有三个未知变量(x,y,z)。
例如,当我得到一个包含 2 或 4 个未知变量的方程时,我必须手动编辑表格。 当我向表提供有关变量计数的信息时,如何才能意识到我的表会自动调整。
I created a excel table that perform a mathematical algorithm.
It works! But my current table assumes that the equation has three unknown variables(x,y,z).
For example when I got a equation with 2 or 4 unknown variables, I have to edit my table manually.
How can I realize it that my table adjusts automatically when I give the table the information about the count of variables.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编写一个 vba 宏来完成您
手动编辑我的表格
时自己做的事情write a vba macro to do what you do yourself when you
edit my table manually
如果任务是求解 N 个线性方程组,您可以为您遇到的最大 N 准备矩阵,并从左上角填充参数,因为“未使用”变量(设置为 0)不会影响结果。您可以使用 MDETERM(array) 函数并将其应用于 Cramer 规则 。
if the task is to solve a system of N linear equations, you can prepare your matrix for the maximum N you would encounter and fill your parameters from the top left, as "unused" variables (set to 0) will not influence the result. You can make use of the MDETERM(array) function and apply it to Cramer's rule .