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

alrededor de 12 años hace | 0

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

alrededor de 12 años hace | 0

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

alrededor de 12 años hace | 0

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

más de 12 años hace | 0

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

casi 13 años hace | 0

| aceptada

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

casi 13 años hace | 0

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

casi 13 años hace | 0

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

casi 13 años hace | 0

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

casi 13 años hace | 0

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

casi 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

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

más de 13 años hace | 0

| aceptada

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

casi 14 años hace | 0

| aceptada

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


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

alrededor de 14 años hace

Resuelto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

alrededor de 14 años hace

Cargar más