Hi all,
anybody know how i could add two binary numbers and carry the raminder eg, if i xor(1,1) the answer will be 0 but i want to carry the 1 and involve it in the next round of xor-ing just like a digital adder?
thanks for the help,
damien
Hi all,
What I want to do is use two functions I have written in MATLAB (for a ADC and a DAC ) in Simulink. How would I go about doing this? The MATLAB function block in functions and tables only seems to operate using functions that came with MATLAB.
Thanks for the help,
Damien
Hi all,
I has two non-square matrices b and A. I want to solve the equation b=Ax for x without using the inverse of A (takes too long a time) and i don't want to have to have to divide either. Matlab does this nicely using the backslash. I want to implement the same routine in C but obviously I...