解決済み


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

6年以上 前

解決済み


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

6年以上 前

解決済み


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

6年以上 前

解決済み


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

6年以上 前

解決済み


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

6年以上 前

解決済み


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

6年以上 前

回答済み
Error while using simscape examples or blocks
Does the missing file exist on your computer? c:\Program Files\MATLAB\R2019b\bin\win64\simscape_applications\physmod\sm\sli\...

6年以上 前 | 1

| 採用済み

回答済み
Why do i receive data type mismatch error when using a Simulink?
You need to add type conversion blocks upstream of the P-S block to convert the boolean signal to a double precision signal.

6年以上 前 | 0

回答済み
How to update values ​​in Simulink
It would be easier to do this with basic simulink blocks. See attached screen shot. Unit delay block by default has initial va...

6年以上 前 | 0

回答済み
Anonymous Function doesn't work with Simulink
try using making the two functions extrinsic. This tells Simulink to not try and generate code for these 2 functions, but to ra...

6年以上 前 | 0

回答済み
Is it possible to call matlab m files from TLC?
Use the built-in TLC function FEVAL to run any MATLAB command, including a MATLAB function, from TLC. THis example calls the MA...

6年以上 前 | 0

回答済み
Create Model from Excel input
You would have to write MATLAB code to do this. This link explains how.

6年以上 前 | 0

回答済み
Bus assignment block automatically converts input data type
What is the data type of RX_Error in the bus when the bus is created? It is probably double. You will need to make the signal ...

6年以上 前 | 0

解決済み


Word Counting and Indexing
You are given a list of strings, each being a list of words divided by spaces. Break the strings into words, then return a maste...

6年以上 前

解決済み


Find state names that end with the letter A
Given a list of US states, remove all the states that end with the letter A. Example: Input s1 = 'Alabama Montana Nebras...

6年以上 前

解決済み


Tic Tac Toe FTW
Given a tic tac toe board: * 1 represents X * 0 represents empty. * -1 represents O It is X's move. If there is an imme...

6年以上 前

解決済み


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

6年以上 前

解決済み


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

6年以上 前

解決済み


Elapsed Time
Given two date strings d1 and d2 of the form yyyy/mm/dd HH:MM:SS (assume hours HH is in 24 hour mode), determine how much time, ...

6年以上 前

解決済み


Kaprekar Steps
6174 is the <http://en.wikipedia.org/wiki/6174_%28number%29 Kaprekar constant>. All natural numbers less than 10,000 (except som...

6年以上 前

解決済み


Find the peak 3n+1 sequence value
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...

6年以上 前

解決済み


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

6年以上 前

解決済み


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

6年以上 前

解決済み


Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if list = {'Barney Google','Snuffy Smith','Dagwood ...

6年以上 前

解決済み


Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...

6年以上 前

解決済み


Encode Roman Numerals
Create a function taking a non-negative integer as its parameter and returning a string containing the Roman Numeral representat...

6年以上 前

解決済み


Find the two-word state names
Given a list of states, remove all the states that have two-word names. If s1 = 'Alabama Montana North Carolina Vermont N...

6年以上 前

回答済み
Can I run the same Simulink model in different Matlab sessions at the same time? Or would they get mixed up?
Each session will be completely independent. The only way to have the sessions interact with each other is if you change the Si...

6年以上 前 | 1

| 採用済み

回答済み
How to setup common file in .XML or .txt format to declare all variables globally for using it in simulink and stateflow?
Are these "variables" fixed during the course of the simulation? If so, create parameters in a MATLAB script file and run the s...

6年以上 前 | 0

| 採用済み

回答済み
Target Scope only stores the data of last 27 seconds
Increase Number of samples from 40000 to a larger number.

6年以上 前 | 0

さらに読み込む