回答済み
how to set tek scope record length?
Have you tried using the capabilities of the oscilloscope object? http://www.mathworks.com/help/instrument/oscilloscope.html ...

約12年 前 | 0

回答済み
How can I get higher throughput using fread with tcpip?
There are a lot of details to look into - * Are the two devices on the same network/subnet? * Is there other networks traf...

約12年 前 | 0

回答済み
Tektronix TDS 1002B to simulink via USB
Have you looked at this? http://www.mathworks.com/matlabcentral/fileexchange/12989 Hope this helps, -Vinod

約12年 前 | 0

回答済み
Low Latency Memory Data Transfer between Two MATLAB instances on Two RTLinux OS Computers
Hi Deborah, Have you taken a look at this? http://blogs.mathworks.com/loren/2011/05/27/transferring-data-between-two-compu...

約12年 前 | 0

回答済み
How to convert a GUI which contains Instrument Control Toolbox codes to an exe file
You need to use <mathworks.com/products/compiler MATLAB Compiler> to generate a standalone EXE from your GUI.

12年以上 前 | 0

回答済み
Matlab GUI and SPCI commands
I think what you're trying to do is something like this: http://blogs.mathworks.com/loren/2011/05/27/transferring-data-betwee...

13年弱 前 | 0

| 採用済み

回答済み
Using instrument control toolbox to get an instantaneous stream of data from an oscilloscope
Avichal, By architecture, most, if not all, oscilloscopes works in a certain way: # The digitizer acquires a frame of data...

13年弱 前 | 0

回答済み
suddenly invalid RSRCNAME specified visa accessing usb port
I'd recommend contacting technical support.

13年弱 前 | 0

回答済み
SRQ Interrupt Capability
Did you check the SPOLL function? http://www.mathworks.com/help/instrument/spoll.html http://www.mathworks.com/help/instrume...

13年弱 前 | 0

回答済み
Continuous Data Collection from Laser Displacement Sensor using Instrument Control Toolbox
Any way I see it, you are going to be limited by the speed of the serial port to transfer the measurements back to MATLAB. If...

13年弱 前 | 0

回答済み
Simulink - Instrument control Toolbox receive TCP/IP
Have you checked the documentation for the TCPIP block? http://www.mathworks.com/help/instrument/tcpipreceive.html Also lo...

13年弱 前 | 0

回答済み
Using fread to read streaming binary data from ethernet using Instrument Control Toolbox
Start here: http://www.mathworks.com/help/matlab/matlab_prog/resolving-out-of-memory-errors.html It has tips on managing ...

13年以上 前 | 0

回答済み
Can I program an Agilent DSO6012A oscilloscope through Matlab without the Instrument Control Toolbox?
The standard way to connect to and control instruments from MATLAB is using the functions in <http://www.mathworks.com/products/...

13年以上 前 | 0

回答済み
Agilent Signal Analyzer CXA N9000A
Have you looked at the <http://www.mathworks.com/products/instrument/examples.html?file=/products/demos/shipping/instrument/acqu...

13年以上 前 | 0

| 採用済み

回答済み
TCPIP communication with agilent device from Linux machine
You can use TCPIP on a Linux machine to communicate with your Agilent arbitrary waveform generator (AWG), if the device supports...

14年弱 前 | 0

| 採用済み

解決済み


Summing Digits within Text
Given a string with text and digits, add all the numbers together. Examples: Input str = '4 and 20 blackbirds baked in a...

約14年 前

解決済み


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

約14年 前

解決済み


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

約14年 前

解決済み


Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...

約14年 前

解決済み


Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...

約14年 前

解決済み


Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...

約14年 前

解決済み


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

約14年 前

解決済み


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

約14年 前

解決済み


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

約14年 前

解決済み


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

約14年 前

解決済み


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

約14年 前

解決済み


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

約14年 前

解決済み


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

約14年 前

解決済み


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

約14年 前

解決済み


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

約14年 前

さらに読み込む