2 Different GUI needs the same inputs

조회 수: 3 (최근 30일)
Fabio
Fabio 2023년 3월 20일
댓글: Rik 2023년 3월 21일
Hello, i have opened 2 different Matlab IDES that runs separately the same program, i need to start 2 equal programs in matlab that have 2 identical GUI interface, but i need them to read the same keyboards inputs and they do not, they only read it when i click on the GUI, is there a solution ?
  댓글 수: 2
chrisw23
chrisw23 2023년 3월 21일
2 Matlab IDE's connected via NamedPipes can share data either on the same local machine or via network. Each GUI detects the keyboard input an sends a message to the other. The NamedPipe connection can be optional so that GUI instances may run independent, but the Srv/Client role has to be set (i.e. UserOption).
I set up a package with a Srv and a Client class. (example constructor code fragment)
function obj = PipeServer(pipeName)
import System.IO.Pipes.*
import WinNetIO.NamedPipes.*
NET.addAssembly("System.Core");
obj.PipeName = pipeName;
obj.pipeServerStream = NamedPipeServerStream(...
pipeName, ...
PipeDirection.InOut, ...
...
function obj = PipeClient(pipeName,pipeServer)
arguments
pipeName string
pipeServer string = "." % for local computer
end
import System.IO.Pipes.*
import WinNetIO.NamedPipes.*
% PipeName and Server
obj.PipeName = pipeName;
obj.PipeServerName = pipeServer;
NET.addAssembly('System.Core');
% client pipeStream object is opened in InOut mode
obj.pipeClientStream = System.IO.Pipes.NamedPipeClientStream(...
obj.PipeServerName,...
obj.PipeName,...
Rik
Rik 2023년 3월 21일
@chrisw23 This looks like an answer to me, especially if you slightly expand your post.

댓글을 달려면 로그인하십시오.

답변 (1개)

Rik
Rik 2023년 3월 20일
There is no general solution to do this, because the two instances of Matlab are separate.
If Matlab were able to do this, it could function as a key logger.
A workaround would be to have the active GUI write the key presses to a file, which the non-active GUI can then read with a listener.

카테고리

Help CenterFile Exchange에서 Language Support에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by