已回答
Image covering panel in app designer
Hi, For setting up background images,see the related Article: How do I add a background image to my gui or figure window I a...

2 years 前 | 0

已回答
.msi file for compiled app
MathWorks is unable to provide .MSI installation files for any of our products. These are not created in-house and aren't offici...

2 years 前 | 0

| 已接受

已回答
Can you use .toarray() for to transform matlab.double objects to python arrays?
There are a couple of ways to accomplish this. One method is to use numpy's built-in method, 'asarray': Start by loading your m...

2 years 前 | 0

已回答
Why do i get error while installing Matlab and the problem isn't the connection?
This error may occur if the installation files for some or all of your products are corrupt, missing, or for the wrong operating...

2 years 前 | 0

已回答
Matlab R2009b Installation - An error occured while contacting mathworks please try later
This error may occur if the installation files for some or all of your products are corrupt, missing, or for the wrong operating...

2 years 前 | 0

已回答
Which is the Buffer Size of a TCP/IP socket (tcpclient)?
In the Transition Your Code to tcpclient Interface doc page, it is mentioned that "Buffer sizes are automatically managed and si...

2 years 前 | 0

已回答
Error occurred when communicating between MATLAB(Server) and Python(Client) via TCP/IP
As per my understanding from your question, you want to send abundant real-time data between python client and MATLAB server and...

2 years 前 | 0

| 已接受

已回答
Simulink becoming unresponsive when zooming in/out, entering/exiting subsystems, inserting blocks, etc.
These sorts of issues are most commonly caused by antivirus software. So, you can try to temporarily disable your antivirus to ...

2 years 前 | 0

已回答
Installing different versions of Matlab Runtime in a Mac
Hi Daniela, As per my understanding, you want to install multiple versions of MATLAB in macOS Yes, you can do that, the instal...

2 years 前 | 1

| 已接受

已回答
Need to install MATLAB on 2 systems
Hi Raja, As per my understanding from your question, you want to install MATLAB on windows and macOS using same licence You ca...

2 years 前 | 1

已回答
Error using images.internal.imagedisplayParseInputs
Hi, That’s likely because the image 'resin_canal.jpg' does not exists in your MATLAB directory or current folder where your M...

2 years 前 | 1

已回答
Simulink scope figure copy to clipboard not fully displayed
Hi, In order to copy a Simulink scope figure to clipboard, you need to click File -> Copy to Clipboard or alternatively Ctr...

2 years 前 | 0

已解决


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

3 years 前

已解决


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

3 years 前

已解决


Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...

3 years 前

已解决


Find state names that start with the letter N
Given a list of US states, remove all the states that start with the letter N. If s1 = 'Alabama Montana Nebraska Vermont Ne...

3 years 前

已解决


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

3 years 前

已解决


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

3 years 前

已解决


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

3 years 前

已解决


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

3 years 前

已解决


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

3 years 前

已解决


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

3 years 前

已解决


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

3 years 前

已解决


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

3 years 前

加载更多