chrisw23
2018 年からアクティブ
Followers: 0 Following: 0
1969
Programming Languages:
C#
Spoken Languages:
German
C#
Spoken Languages:
German
統計
All
Feeds
回答済み
Launch deployed application with winopen
... function callConsoleApplicationAsync(obj,appWorkingPath,appFileNameWithArguments) arguments ...
Launch deployed application with winopen
... function callConsoleApplicationAsync(obj,appWorkingPath,appFileNameWithArguments) arguments ...
5ヶ月 前 | 0
回答済み
App Designer standalone app can't find external file
You have to add dependent files manually in the Compiler App Project before building the standalone component. Since there's no ...
App Designer standalone app can't find external file
You have to add dependent files manually in the Compiler App Project before building the standalone component. Since there's no ...
11ヶ月 前 | 1
回答済み
Use NI USB 6001 without the Data Acquisition Toolbox
It is, using the .net DAQmx driver...some code lines ... NET.addAssembly('NationalInstruments.Common'); ...
Use NI USB 6001 without the Data Acquisition Toolbox
It is, using the .net DAQmx driver...some code lines ... NET.addAssembly('NationalInstruments.Common'); ...
11ヶ月 前 | 1
回答済み
Recovering the built-in empty functionality when empty() is overloaded
you have the option to define a constructor with arguments to define the state of the returned object i.e. classdef CustomCl...
Recovering the built-in empty functionality when empty() is overloaded
you have the option to define a constructor with arguments to define the state of the returned object i.e. classdef CustomCl...
11ヶ月 前 | 0
回答済み
Trigger event when content on system clipbooard changes
asm = NET.addAssembly("System.Windows.Forms"); % Includes clipboard-class. fCol = System.Collections.Specialized.StringColl...
Trigger event when content on system clipbooard changes
asm = NET.addAssembly("System.Windows.Forms"); % Includes clipboard-class. fCol = System.Collections.Specialized.StringColl...
11ヶ月 前 | 1
| 採用済み
回答済み
How to extract only one file from a zipped folder
NET.addAssembly("System.IO.Compression.FileSystem"); ...
How to extract only one file from a zipped folder
NET.addAssembly("System.IO.Compression.FileSystem"); ...
1年以上 前 | 1
回答済み
Unzip will not work on some archives
try to use .net Functionality (Windows OS assumed) asm = NET.addAssembly("System.IO.Compression"); import System.IO.Compressio...
Unzip will not work on some archives
try to use .net Functionality (Windows OS assumed) asm = NET.addAssembly("System.IO.Compression"); import System.IO.Compressio...
1年以上 前 | 0
| 採用済み
回答済み
sending values from function to appdesigner
To call your function saved as a script from appdesigner just place the script file in a folder named 'private' that has to be p...
sending values from function to appdesigner
To call your function saved as a script from appdesigner just place the script file in a folder named 'private' that has to be p...
1年以上 前 | 1
回答済み
Run a script on all files in a folder/subfolders
..some example lines of code using .net System functionality import System.IO.* searchDir = "C:\Temp"; pattern = "*.*"; ...
Run a script on all files in a folder/subfolders
..some example lines of code using .net System functionality import System.IO.* searchDir = "C:\Temp"; pattern = "*.*"; ...
1年以上 前 | 0
回答済み
Dot indexing is not supported for variables of this type.
Your object in_vidsDuration is not yet initialized. Use isvalid / isempty to check the object state and catch the exception by ...
Dot indexing is not supported for variables of this type.
Your object in_vidsDuration is not yet initialized. Use isvalid / isempty to check the object state and catch the exception by ...
1年以上 前 | 0
回答済み
How to get pixel's position of an image in app.Image or app.UIAxes in AppDesigner?
first step % Image clicked function: Image function ImageClicked(app, event) get(0, 'PointerLoca...
How to get pixel's position of an image in app.Image or app.UIAxes in AppDesigner?
first step % Image clicked function: Image function ImageClicked(app, event) get(0, 'PointerLoca...
1年以上 前 | 0
| 採用済み
回答済み
NI DAQ channel terminal in MATLAB is read-only
As long as the PFI is configured as Input it should be readOnly. Each PFI line can be individually configured as a static digit...
NI DAQ channel terminal in MATLAB is read-only
As long as the PFI is configured as Input it should be readOnly. Each PFI line can be individually configured as a static digit...
1年以上 前 | 0
回答済み
Connect LabJack T7 Pro to MATLAB
i recommed to use the .net api LJM Library and .NET assembly - Install the LJM Library use NET.addassembly(... start with LJ...
Connect LabJack T7 Pro to MATLAB
i recommed to use the .net api LJM Library and .NET assembly - Install the LJM Library use NET.addassembly(... start with LJ...
1年以上 前 | 1
| 採用済み
回答済み
Is properties like global variables?
see the first line of a mlapp file classdef app1 < matlab.apps.AppBase Each AppDesigner app is nothing more than a class defin...
Is properties like global variables?
see the first line of a mlapp file classdef app1 < matlab.apps.AppBase Each AppDesigner app is nothing more than a class defin...
1年以上 前 | 0
回答済み
How to properly using visdiff in command line with mat files ?
try to start a new MatLab session modify this cmd line as needed matlab -wait -nodesktop -r "visdiff( \"\"{<file1>}\"\",\"\"{<...
How to properly using visdiff in command line with mat files ?
try to start a new MatLab session modify this cmd line as needed matlab -wait -nodesktop -r "visdiff( \"\"{<file1>}\"\",\"\"{<...
1年以上 前 | 0
回答済み
Exiting form readline() in TCPIP server before timeout occurs
try to implement the BytesAvailableFcn callback before starting the readline function flush the buffer and delete ther server ...
Exiting form readline() in TCPIP server before timeout occurs
try to implement the BytesAvailableFcn callback before starting the readline function flush the buffer and delete ther server ...
1年以上 前 | 0
回答済み
How can I create an inherit class based on variable value?
classdef baseClass < handle methods function baseClass(index) ... end end ... classdef class0 < baseClass ...
How can I create an inherit class based on variable value?
classdef baseClass < handle methods function baseClass(index) ... end end ... classdef class0 < baseClass ...
1年以上 前 | 0
回答済み
I want to turn on/off dependency of two class properties based on the third property.
Try to use Observed Properties Save the listener handles as private properties and use the listeners 'Enabled' property to turn...
I want to turn on/off dependency of two class properties based on the third property.
Try to use Observed Properties Save the listener handles as private properties and use the listeners 'Enabled' property to turn...
1年以上 前 | 0
| 採用済み
回答済み
Pass variables/structure to .mlapp (GUI/App designer)
Calling your mlapp application from your script returns the app handle with full access to all public objects myAppHandle = myA...
Pass variables/structure to .mlapp (GUI/App designer)
Calling your mlapp application from your script returns the app handle with full access to all public objects myAppHandle = myA...
1年以上 前 | 0
回答済み
Save button disabled when editing an App Designer App
Save a copy of this file within appdesigner and check if the behaviour can also been seen running the copied mlapp file.
Save button disabled when editing an App Designer App
Save a copy of this file within appdesigner and check if the behaviour can also been seen running the copied mlapp file.
1年以上 前 | 0
回答済み
Failure to read binary data from a visa instrument using readbinblock or read: Format error detected during binblockread.
For this instruments a bunch of commands returns data in BinBlock format. i.e. :RESult:BLOCk? Returns a specified binary block...
Failure to read binary data from a visa instrument using readbinblock or read: Format error detected during binblockread.
For this instruments a bunch of commands returns data in BinBlock format. i.e. :RESult:BLOCk? Returns a specified binary block...
1年以上 前 | 0
回答済み
how to correct Too many input arguments error in below code
check this [eePos, eeVel, guessValsOut, status] ...
how to correct Too many input arguments error in below code
check this [eePos, eeVel, guessValsOut, status] ...
1年以上 前 | 0
回答済み
Timeout error with Visa Device
Consider the following scope states trigger system < pretrigger / trigger ready / triggered > acquisition system <startFromTr...
Timeout error with Visa Device
Consider the following scope states trigger system < pretrigger / trigger ready / triggered > acquisition system <startFromTr...
1年以上 前 | 0
回答済み
How to make calls to static methods independent of packaging structure (name)?
try to set a session path (addpath) and import the package path (i.e. import MyPackageRoot.TestPackage.*)
How to make calls to static methods independent of packaging structure (name)?
try to set a session path (addpath) and import the package path (i.e. import MyPackageRoot.TestPackage.*)
1年以上 前 | 0
回答済み
Return values from figure callback
I suggest to use the lines UserData property to save your data. hLines(k).UserData = ...
Return values from figure callback
I suggest to use the lines UserData property to save your data. hLines(k).UserData = ...
2年弱 前 | 0
回答済み
.Net DLL not working after some time
Check that the Matlab class will not be reinstantiated before the last object of this class was properly disposed. If you debug ...
.Net DLL not working after some time
Check that the Matlab class will not be reinstantiated before the last object of this class was properly disposed. If you debug ...
2年弱 前 | 0
回答済み
How to pick group sum values from an array
X=[1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 1 1 1 1]; xStr = string(X).join(""); pat = asManyOfPatter...
How to pick group sum values from an array
X=[1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 1 1 0 0 0 1 1 1 1 1]; xStr = string(X).join(""); pat = asManyOfPatter...
2年弱 前 | 1
回答済み
Index exceeds the number of array elements. Index must not exceed 1.
use a try catch block to debug ... try Fbump(ii)=Pb(ii)/VA(ii); %this line of code is givig me the error catch ex ...
Index exceeds the number of array elements. Index must not exceed 1.
use a try catch block to debug ... try Fbump(ii)=Pb(ii)/VA(ii); %this line of code is givig me the error catch ex ...
2年弱 前 | 0
回答済み
How to make a method a global variable in a class?
You can't access 'obj.client' in function 'ApplyControl' unless you save it to your declared property. --> change your constru...
How to make a method a global variable in a class?
You can't access 'obj.client' in function 'ApplyControl' unless you save it to your declared property. --> change your constru...
2年弱 前 | 1
| 採用済み
回答済み
Reading from COM port for 2 days
I suggest to use event based communication. Reading a fixed packet length may lead to a buffer over-/underrun due to asynchronou...
Reading from COM port for 2 days
I suggest to use event based communication. Reading a fixed packet length may lead to a buffer over-/underrun due to asynchronou...
2年弱 前 | 0