How can I solve this problem in the matlab program ?
古いコメントを表示

3 件のコメント
Walter Roberson
2020 年 12 月 21 日
What problem? You show some text from some theory work; you do not show any question to be solved.
Vuqar Samedov
2020 年 12 月 21 日
Timo Dietz
2020 年 12 月 21 日
Some parenthesis are missing and u seems to be wrongly defined. Nevertheless, Matlab seems to calculate intemediate steps which prevents the final elimination of values on symbolic side.
採用された回答
その他の回答 (1 件)
syms x a b u
Pi = sym(pi)
f = 1/(b*sqrt(2*Pi))*exp(-1/(2*b^2)*(x-a)^2)
U = (x-a)/(b*sqrt(2));
DU = diff(U,x);
B = solve(u == U, b)
fs = subs(f/DU, b, B)
int(fs,-inf,inf)
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


