Clear Filters
Clear Filters

Check for missing argument or incorrect argument data type in call to function 'create'

2 views (last 30 days)
for K = V(1:300)
K>0.29
if K<0.29
create new
end
end
I am trying so that if the number falls below 0.29 then it will create a new data set which I can then export as a pdf file. Please help!

Answers (1)

Jahid Hasan
Jahid Hasan on 12 Dec 2020
%Ec = sym('Ec')
syms Ec;
V = 19;
P = 77.7 ;
Vo = 6.67;
Bo = 433;
Bop = 4;
B = (Bop-1)/2 ;
Ec = 99
C = sqrt(9*Bo*Vo/Ec);
A = 1- ((V/Vo)^(1/3)) ;
X = 3*Bo*((V/Vo)^(-2/3))* A*(1+(3*B-C)*A + (B*C - (3*Bo*Vo/Ec))*A*A)* exp(C*A)==77.7 ;
L=solve(X,Ec)
double L
why i can not run this code, can you check where did i make mistake, I am trying to get Ec value but its not working for me

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!