First
|
Prev |
Next
|
Last
Pages: 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
importing data via tcp/ip into a real time simulink model Afternoon everyone, I've built a Simulink model, which requires data from another computer to be sent across in real time. We're using tcp/ip to do this, and on Matlab's workspace can do this like so; t = tcpip('192.168.54.111',600); fopen(t); fscanf(t) However, how can I have this running inside Simulink? I... 3 Aug 2010 08:08
GUI and fungtions compile to application have a sample GUI application and several functions Can you petrify me step by step video tutorial how to export or compile matlab file is in the form of applications (exe)? ... 3 Aug 2010 08:08
code for adhoc network clear; noOfNodes = 10; rand('state', 0); figure(1); clf; hold on; L = 1000; R = 200; % maximum range; netXloc = rand(1,noOfNodes)*L; netYloc = rand(1,noOfNodes)*L; for i = 1:noOfNodes plot(netXloc(i), netYloc(i), '.'); text(netXloc(i), netYloc(i), num2str(i)); for j = 1:noOfNodes distance = sqrt((netXloc(... 3 Aug 2010 08:08
Comparing variables contained in MAT files Hi everyone, I have two MAT files that each contain many variables. The variables in the two MAT files are almost identically but, crucially, one of the variables has a different value in one MAT file than the value it has in the other MAT file. With many of the variables being cell arrays, it is very difficult t... 3 Aug 2010 10:19
connected component labeling Hi, In my work i have found edges from image then connected component labeling is applied.It works successfully.Now from connected components i want to group the components which are having maximum number of edges and want to remove small edges. ... 4 Aug 2010 08:08
from function to workspace let say I have this function: function test n=10000 x = zeros(1,n); for i = 1:n, x(i) = i; end end When I am running this function I would to access the results in workspace! Any help please... as I dont know how to make them visible or memorize in the workspace... ... 3 Aug 2010 07:03
about governor paramerter who can tell me how to set gmax value and gmin value in the Steam Turbine and Governor for a 200MW? ... 3 Aug 2010 08:08
How to display values on a plot Hello, I am successfully showing the values on a graph for one curve, the thing is I have 2 curves and the plot is a y-y plot: for the left y axis curve the values are depicted correctly, for the right axis curve no - the values are depicted according to the left axis ! ! how do i bypass this? thank you in adv... 3 Aug 2010 09:13
singleCompThread doesn't work? I'm running some (singlethreaded) script on linux cluster under MATLAB R2009b with the option -singleCompThread that suppose to limit number of used threads with 1. But according to the log file this script requires 2-4 processes and 7-15 threads. Is it a bug or a feature and how to fix this? Beforehand thankds, V... 3 Aug 2010 05:58
Freeman chain code "Reff " <rafi128(a)yahoo.com> wrote in message <hn8mdq$1bc$1(a)fred.mathworks.com>... How to use freeman chain code in matlab? Thanks ... 3 Aug 2010 05:58 |