답변 있음
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년 전 | 1

답변 있음
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년 전

더 보기