how can I get the fixed point number as "-981.0621" from hdlcoder?

1 view (last 30 days)
hi. I'm trying to get the fixed point number from hdl coder. the number is negative fixed number as -981.0621.
%%Function
phi_xy=zeros(84,1);
function phi_xy=calc()
for ii=7
for jj=12
phi_xy((jj-1)*7 + ii)=-981.0621;
end
end
end
%%script
calc();
but Verification output is always
### Begin Fixed Point Simulation :
ans =
  -981
How can I get negative fixed number -981.0621 instead -981?

Answers (1)

Kiran Kintali
Kiran Kintali on 2 Feb 2018
Edited: Kiran Kintali on 2 Feb 2018
can you share design.m, testbench.m and matlab hdlcoder project file for this question?
thanks

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!