writting down the code for the function
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Attached file has the function and here is my matlab code pasted below
function y = myFunction(x, n)
if n == 1
y = 4 * sin(x) / (25*x + sin(25));
else
y = 2 * tan(5*n) / bi;
end
end
% Define the values of x and n
n = 2;
% Call the function to calculate y
y = myFunction(x, n);
% Display the result
disp(y);
0 Kommentare
Antworten (1)
Walter Roberson
am 7 Feb. 2024
y = 4 * sin(x) / (25*x + sin(25));
That is not vectorized. It needs to be
y = 4 * sin(x) ./ (25*x + sin(25));
Also remember that the parameters to the trig functions are in radians . If you want degrees, use sind
9 Kommentare
Walter Roberson
am 8 Feb. 2024
Bi_value is symbolic, not numeric. You cannot num2str() it. You can char() it.
Siehe auch
Kategorien
Mehr zu Line Plots 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!