Recent content by david1986

  1. D

    MATLAB Troubleshooting MATLAB Code: Tips for a Beginner | Findtext.m Error Help

    dear all, i am MATLAB new user and i have some problems about it. I generated a code as below: function data = findtext(redc,greenc,bluec) txt=0; if bitand(redc,4)== 4 txt=bitor(txt,128); end if bitand(redc,2)== 2 txt=bitor(txt,64); end if bitand(redc,1)== 1 txt=bitor(txt,32)...
Back
Top