Answered
How should I interface Agilent 8164A with Instrument Control Tool box? I need mdd driver for 8164A please tell me where should I download it.
You can create the MDD using the MAKEMID command if there exists an IVI driver for your instrument. Have you checked the IVI...

12 years ago | 1

Answered
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 years ago | 0

Answered
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 years ago | 0

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

12 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

| accepted

Answered
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 years ago | 0

Answered
suddenly invalid RSRCNAME specified visa accessing usb port
I'd recommend contacting technical support.

13 years ago | 0

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

13 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

Answered
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 years ago | 0

| accepted

Answered
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...

13 years ago | 0

| accepted

Solved


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 years ago

Solved


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

14 years ago

Solved


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 years ago

Solved


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 years ago

Solved


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 years ago

Solved


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

14 years ago

Solved


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 years ago

Solved


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

14 years ago

Solved


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 years ago

Solved


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

14 years ago

Solved


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 years ago

Solved


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 years ago

Solved


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 years ago

Solved


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 years ago

Load more