Message 1 of 16
NOT EQUAL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
One time the /= works and the next time it don't angln2 is equal to 1.5708
(if
(and
(/= angln2 0)
(/= angln2 (cvunit 90 "DEGREE" "RADIAN")))
(progn
(setq an2 angln2)
(setq an2s ln2s)
(setq an2e ln2e)
)
)
this /= sims to work
(if
(and
(/= angln4 0.0)
(/= angln4 (cvunit 90 "DEGREE" "RADIAN")))
(progn
(cond
((null an1)
(setq an1 angln4)
(setq an1s ln4s)
(setq an1e ln4e)
)
((null an2)
(setq an2 angln4)
(setq an2s ln4s)
(setq an2e ln4e)
)
)
)
)