How to define an arbitrary constant for equations?

5 次查看(过去 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]

采纳的回答

Birdman
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 CenterFile Exchange 中查找有关 Linear Algebra 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by