フィルターのクリア

Error: Conversion to double from sym is not possible.

1 回表示 (過去 30 日間)
Aisha F Colindres
Aisha F Colindres 2017 年 11 月 26 日
回答済み: Karan Gill 2017 年 11 月 27 日
I created a code to plot x versus a range of T as follows but keep getting the error "Conversion to double from sym is not possible. None of my attempts to fix this has worked, any help would be appreciated.
clc;clear all
V=3785.4; %dm^3
Kco=3;
z=2902.14;
dHrx=-25000; %cal/mol
R=1.987; %cal/mol*K
To=300; %K
T=300:320;
E=15000; %cal/mol
y=exp((E/R)*((1/To)-(1./T)));
Kc=Kco*(exp((dHrx/R)*((1/To)-(1./T))));
syms x V z y Kc
eqn=V-((z./y).*(x./(((1-x).^2)-((1./Kc)*(x.^2))))) == 0;
solx=solve(eqn,x)
plot(x,T)

回答 (1 件)

Karan Gill
Karan Gill 2017 年 11 月 27 日
To plot symbolic expressions, use fplot instead of plot. See https://www.mathworks.com/help/symbolic/fplot.html .
Also, why are you plotting "x" against "t"? I assume you want to plot "solx".

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by