Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
I'm writing a function where I've called the script AngleA and the function written below works fine to find AngleA but when I write a similar code for AngleB it says that AngleB isn't defined how do I define the variable or fix the error?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
function [A] = AngleA(a,b,c) AngleA = acosd((b^2 + c^2 - a^2)/(2*b*c)) function [B] = AngleB(a,b,c) AngleB = acosd((a^2 + c^2 - b^2)/(2*a*c))
0 Kommentare
Antworten (1)
Thorsten
am 28 Sep. 2016
Bearbeitet: Thorsten
am 28 Sep. 2016
In file AngleA.m, write
function A = AngleA(a,b,c)
A = acosd((b^2 + c^2 - a^2)/(2*b*c));
in file AngleB.m write
function B = AngleB(a,b,c)
B = acosd((a^2 + c^2 - b^2)/(2*a*c));
If a, b, c can be vectors, you have to replace
^ with .^
* with .*
1 Kommentar
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!