/usr/share/freemat/toolbox/trig/acotd.m is in freemat-data 4.0-5build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | % ACOTD ACOTD Inverse Cotangent Degrees Function
%
% Usage
%
% Computes the inverse cotangent of its argument in degrees. The general
% syntax for its use is
%
% y = acotd(x)
%
% where x is an n-dimensional array of numerical type.
function y = acotd(x)
y = rad2deg(acot(x));
|