采纳的回答

Adam Danz
Adam Danz 2021-5-28
编辑:Adam Danz 2021-5-28

0 个投票

If this is something the documentation doesn't answer you'll have to elaborate. We don't know what "a" is in your question.

2 个评论

a=[10:10:100] is given.i tried but dimension not matching error came.
Thanks in advance

请先登录,再进行评论。

更多回答(2 个)

Asmit Singh
Asmit Singh 2021-5-28
编辑:Asmit Singh 2021-5-28
You can look at the plotting documentation to know more. Heres a simple example.
x = 0:pi/100:2*pi;
% a = 2
y = sinh(2*x);
plot(x,y)
hold on
%a = 5
y = sinh(5*x);
plot(x,y)
Hi,
Use this synatx approach:
syms x
a = [?, ?, ?, ..];
% OR
a = input('a = ');
V = sinh(a(:)*x);
fplot(V, [xmin, xmax])
Good luck.

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

产品

版本

R2015a

标签

Community Treasure Hunt

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

Start Hunting!

Translated by