idst(a)
Version 1.0.0.0 (218 Bytes) by
Koorosh Gobal
Calculate the inverse sine transform of vector 'a'.
function out = idst(a)
% IDST calculate the inverse sign transform of vector a.
y = zeros(length(a)+1,1);
N = length(y);
for m = 1:length(a)
y = y + a(m) * sin(m * pi * (0:N-1)' / (N - 1));
end
out = y;
end
Cite As
Koorosh Gobal (2026). idst(a) (https://uk.mathworks.com/matlabcentral/fileexchange/49799-idst-a), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Created with
R2014a
Compatible with any release
Platform Compatibility
Windows macOS LinuxCategories
Find more on Numerical Integration and Differential Equations in Help Center and MATLAB Answers
Tags
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.0.0.0 |
