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

1 year ago | 0

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

1 year ago | 0

| accepted

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

1 year ago | 0

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

1 year ago | 0

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

1 year ago | 0

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

1 year ago | 0

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

1 year ago | 0

| accepted

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

1 year ago | 0

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

1 year ago | 1

| accepted

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

1 year ago | 1

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

1 year ago | 1

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

1 year ago | 0

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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 ago

Solved


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

3 years ago

Solved


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 ago

Load more