Tanh graph with ±
1 回表示 (過去 30 日間)
古いコメントを表示
Kenneth Bisgaard Cristensen
2021 年 3 月 30 日
コメント済み: Star Strider
2021 年 3 月 30 日
Hi MATLAB Community,
How do I add ± to a,b,c,d like ing the graph?
Any help would be appriciated.
a = 95.80266;
b = -88.53938;
c = 30.84839;
d = -16.56475;
y = a+b*tanh((x+c)/d);
plot(y,tanh(x));
grid on;
0 件のコメント
採用された回答
Star Strider
2021 年 3 月 30 日
That is an annotation textbox, specifically the result of Create Text Box Annotation with Multiline Text in MATLAB.
You can try usiing them, however I have always found them extremely difficult to work with, so I use text objects instead, since they are simply easier to work with.
4 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!