comparison scripts/specfun/nthroot.m @ 23083:e9a0469dedd9 stable

maint: strip extra trailing newlines from files.
author John W. Eaton <jwe@octave.org>
date Fri, 20 Jan 2017 12:19:08 -0500
parents 93ea313301f9
children ef4d915df748 3ac9f9ecfae5
comparison
equal deleted inserted replaced
23082:e8d64dce0afd 23083:e9a0469dedd9
106 %!error <X must not contain complex values> nthroot (1+j, 2) 106 %!error <X must not contain complex values> nthroot (1+j, 2)
107 %!error <N must be a real nonzero scalar> nthroot (1, i) 107 %!error <N must be a real nonzero scalar> nthroot (1, i)
108 %!error <N must be a real nonzero scalar> nthroot (1, [1 2]) 108 %!error <N must be a real nonzero scalar> nthroot (1, [1 2])
109 %!error <N must be a real nonzero scalar> nthroot (1, 0) 109 %!error <N must be a real nonzero scalar> nthroot (1, 0)
110 %!error <N must be an odd integer> nthroot (-1, 2) 110 %!error <N must be an odd integer> nthroot (-1, 2)
111