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

circa 12 anni fa | 1

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

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

circa 12 anni fa | 0

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

oltre 12 anni fa | 0

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

quasi 13 anni fa | 0

| accettato

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

quasi 13 anni fa | 0

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

quasi 13 anni fa | 0

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

quasi 13 anni fa | 0

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

quasi 13 anni fa | 0

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

quasi 13 anni fa | 0

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

oltre 13 anni fa | 0

Risposto
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/...

oltre 13 anni fa | 0

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

oltre 13 anni fa | 0

| accettato

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

quasi 14 anni fa | 0

| accettato

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Risolto


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

circa 14 anni fa

Carica altro