photo

Menghan

MathWorks

Last seen: plus de 5 ans il y a Actif depuis 2013

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
10 Réponses

Cody

0 Problèmes
67 Solutions

RANG
2 619
of 300 780

RÉPUTATION
24

CONTRIBUTIONS
0 Questions
10 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
4

RANG
 of 21 086

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
9 733
of 171 018

CONTRIBUTIONS
0 Problèmes
67 Solutions

SCORE
700

NOMBRE DE BADGES
3

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • First Review
  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer
  • Promoter
  • Commenter
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
BLE write to Arduino Nano 33 BLE is unsuccessful
Hi Nikunj, This is a known issue in MATLAB BLE characteristic interface. See external bug report here. If you use BLEWrite ...

plus de 5 ans il y a | 0

Réponse apportée
Cannot program Arduino Uno Board
Can you first confirm that the downloaded Arduino IDE works fine on your computer? To do that, go to the folder which is returne...

plus de 7 ans il y a | 0

Réponse apportée
Data acquisition from Arduino Uno and realtime plotting
arduino function creates a connection to the board each time you call it and only one connection to the board can exist at one t...

plus de 7 ans il y a | 1

| A accepté

Réponse apportée
Custom Arduino Library won't register.
Hi Kevin, I know you have tried with the example add-on, but just to confirm it again, can you run the following code in MATL...

presque 8 ans il y a | 1

| A accepté

Réponse apportée
Is it possible to Create Custom Arduino Add-On Device, Library, or Code for Arduino DUE?
Hi Nicholas, Please contact MathWorks Technical Support for this issue and make sure you provide them your custom add-on cod...

environ 8 ans il y a | 1

| A accepté

Réponse apportée
Using matlab support package for arduino with any motor shield
Hi Derick, From what I find about this L298N motor shield online, it seems to only need digital IO and PWM signal for directi...

plus de 8 ans il y a | 0

| A accepté

A résolu


Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>

presque 10 ans il y a

A résolu


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

presque 10 ans il y a

Réponse apportée
I have matlab 2014a with support package but when i call arduino in command window this message is appeared:Updating server code on...
Hi Abbas, There are a couple things that can lead to this error. 1. Has the Arduino device driver been properly installed...

environ 10 ans il y a | 0

Réponse apportée
How can I change SPI mode of an Arduino through Matlab?
It is a bug in MATLAB R2014b. If you are still looking for a fix, please contact MathWorks technical support to get a patch. ...

environ 10 ans il y a | 0

A résolu


Scrabble Scores
Given a word, determine its score in <http://en.wikipedia.org/wiki/Scrabble Scrabble>. The input string will always be provi...

plus de 10 ans il y a

Réponse apportée
Cannot connect Arduino Uno to Matlab R2014b
Can you turn the trace on when creating the arduino object? For example, a = arduino('COM3','uno', 'TraceOn', true); You need to...

presque 11 ans il y a | 1

Réponse apportée
Cannot connect Arduino Uno to Matlab R2014b
Do you still have the same issue? If so, can you confirm that the port and board are both correct?

environ 11 ans il y a | 0

A résolu


Maximum running product for a string of numbers
Given a string s representing a list of numbers, find the five consecutive numbers that multiply to form the largest number. Spe...

presque 12 ans il y a

A résolu


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

presque 12 ans il y a

A résolu


Counting Sequence
Given a vector x, find the "counting sequence" y. A counting sequence is formed by "counting" the entries in a given sequence...

presque 12 ans il y a

A résolu


Clean the List of Names
Given a list of names in a cell array, remove any duplications that result from different capitalizations of the same string. So...

presque 12 ans il y a

A résolu


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

presque 12 ans il y a

A résolu


QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a <http://en.wikipedia.org/wiki/Keyboa...

presque 12 ans il y a

A résolu


Renaming a field in a structure array
MATLAB has a <http://www.mathworks.com/help/techdoc/ref/setfield.html setfield> and a <http://www.mathworks.com/help/techdoc/ref...

presque 12 ans il y a

A résolu


Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

presque 12 ans il y a

A résolu


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

presque 12 ans il y a

A résolu


Function Iterator
Given a handle fh to a function which takes a scalar input and returns a scalar output and an integer n >= 1, return a handle f...

presque 12 ans il y a

A résolu


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

presque 12 ans il y a

A résolu


Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...

presque 12 ans il y a

A résolu


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

presque 12 ans il y a

A résolu


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

presque 12 ans il y a

A résolu


Make a Palindrome Number
Some numbers like 323 are palindromes. Other numbers like 124 are not. But look what happens when we add that number to a revers...

presque 12 ans il y a

A résolu


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

presque 12 ans il y a

A résolu


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

presque 12 ans il y a

Charger plus