Solving 4 symbolic simultaneous equation -- please help!

2 Ansichten (letzte 30 Tage)
Omar Khammash
Omar Khammash am 23 Okt. 2020
Kommentiert: Omar Khammash am 24 Okt. 2020
I am trying to use the following code to solve for a b c d in terms on n and t. but i get an error saying:
Reference to non-existent field 'a'.
Error in Shape_builder (line 7)
S.a
clear all; close all; clc;
syms a b c d n t
eqns=[a+b+c+d==0, d==0, a*n^3+b*n^2+c*n+d==t, 3*a*n^2+2*b*n+c==0];
S=solve(eqns);
S.a
S.b
S.c
S.d

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 24 Okt. 2020
You are not telling solve() which variables to solve for, and it happens to pick c d n t to solve for.

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by