I think that your question is how to call the obtained gain by the LMI into a simulink programme. For that, in the .m file that solves the LMI define the controller gain as a global variable by using the santax "global K" at the beginning of the script. Note that, at the end of your script the gain matrix "K" should be a real matrix and not a sdpvar or a LMI variable. In such a case you have to convert your gain using either value(K) for sdp programming or dec2mat(K) for LMI toolbox. By doing so, go to your simulink programme which should be in the same directory of your matlab script and call your gain "K".