Change the value of independent variables to solve the dependent variable equation
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Deepro Bardhan
am 29 Jul. 2021
Kommentiert: Deepro Bardhan
am 31 Jul. 2021
x=0:0.5:4*pi;
y=sin(x)+cos(x);
display(y);
In the above example the y(x) is given . Now i want to use y(Ax) in other equations (where A is some constant or variable) without hampering the original x values.
Please tell me how to do it.
0 Kommentare
Akzeptierte Antwort
darova
am 29 Jul. 2021
Use function handle
x = 0:.1:10;
f = @(a) sin(a*x);
plot(x,f(2),'r')
line(x,f(5))
Weitere Antworten (1)
KSSV
am 29 Jul. 2021
x=0:0.5:4*pi;
y=sin(x)+cos(x);
xi = x(2)*rand ;
yi = interp1(x,y,xi) ;
plot(x,y,'r',xi,yi,'*b')
1 Kommentar
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!