I have attached my problem please write its matlab command.
显示 更早的评论
f = @(delv)(sqrt(2.*q.*Nsub./Csi.*(delv+vt.*(ni./Nsub).^2.*(exp(delv./vt)-1))+(vt.*(exp(-delv./vt)-1))));
delv=Vs1-Vbef+A-R-S-B(1+(Cox./Csi))-(-(q.*Np.*tsi./Cox)+(Csi.*f./Cox)).*(1+Cox./Csi);
回答(1 个)
madhan ravi
2018-11-9
编辑:madhan ravi
2018-11-9
f = @(delv) str2sym('(sqrt(2.*q.*Nsub./Csi.*(delv+vt.*(ni./Nsub).^2.*(exp(delv./vt)-1))+(vt.*(exp(-delv./vt)-1))))');
delv=@(f) str2sym('Vs1-Vbef+A-R-S-B(1+(Cox./Csi))-(-(q.*Np.*tsi./Cox)+(Csi.*f./Cox)).*(1+Cox./Csi)');
f(delv) %f is a function of delv
delv(f) %delv is a function of f
6 个评论
madhan ravi
2018-11-9
编辑:madhan ravi
2018-11-9
by the way what do you want to from the above equations there are no datas for the variables ,if the above doesn't work upload your file by clicking the paper clip button {}.
A GARG
2018-11-9
编辑:madhan ravi
2018-11-9
madhan ravi
2018-11-11
"Don't worry about the other variables, they are well defined in my program."
If you want a proper help provide all the necessary details
A GARG
2018-11-11
madhan ravi
2018-11-11
编辑:madhan ravi
2018-11-11
which value do you want to return ? attach your script file
类别
在 帮助中心 和 File Exchange 中查找有关 Programming 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!