How to define an arbitrary constant for equations?
8 次查看(过去 30 天)
显示 更早的评论
Hello everyone. I want to define a arbitrary constant for equations that I wrote. How can I define? I tried to define with cond command but it didn't work.
v1=6;
v3=18;
syms v2 v4 v5 v6
eqn1= -v4+v5==-v3;
eqn2= -v2+v6==v3;
eqn3= -v5-v6==-v1;
cond= v6~=0;
[v2 v4 v5 v6]=solve(eqn1, eqn2, eqn3);
[v2 v4 v5 v6]
0 个评论
采纳的回答
Birdman
2018-3-26
If you are talking about making an assumption, you can do it as follows:
v1=6;
v3=18;
syms v2 v4 v5 v6
eqn1= -v4+v5==-v3;
eqn2= -v2+v6==v3;
eqn3= -v5-v6==-v1;
assume(v6~=0)
[v2 v4 v5 v6]=solve(eqn1, eqn2, eqn3);
[v2 v4 v5 v6]
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle & Nuclear Physics 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!