A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

environ 6 ans il y a

A résolu


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

environ 6 ans il y a

A répondu
Multiple plots with same Legend
The issue here is that each legend needs to be associated with an axis. There is no built-in way to create an "overall legend". ...

environ 6 ans il y a | 7

| A accepté

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


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

environ 6 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

environ 6 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

environ 6 ans il y a

A répondu
Can I use UIAxes to stream live video from a camera and how?
Please checkout the code snippet and inform whether it works. vidobj = videoinput('winvideo'); triggerconfig(vidobj, 'ma...

environ 6 ans il y a | 0

A répondu
How to convert pulses into integer
Please refer below links for more information: https://stackoverflow.com/questions/36233487/simulink-convert-continuous-signa...

environ 6 ans il y a | 0

A répondu
I have a script already done I just need to add to the code so that i can run the code and store the index of the first 1 that occurs in a vector g. Can anyone help me add to the code to implement it?
I understood that you want to find the first occurrence of 1 in a vector.Can you try this: index=find(vector==1,1,'first') ...

environ 6 ans il y a | 0

A répondu
(App Designer) Refresh rate low displaying high-res video in GUI created by AppDesigner
Hello, can you try using drawnow limitrate; to increase the animation rate. Refer this link for more information: h...

environ 6 ans il y a | 0

A répondu
How to import matrix to app designer?
Before 2017b,there was a workaround to pass data from workspace to appdesigner. Please refer this link for the method: https:...

environ 6 ans il y a | 3

| A accepté

A répondu
Secondary click using two fingers on Mac Trackpad
It is a known bug and it is being considered for a fix. You can follow below workarounds: 1)Use Control + Click instead of a ...

environ 6 ans il y a | 0

A répondu
how to read many csvfile?
Hi suryeon kim, dlmread() reads numeric data into matrix. For example (files used in the code are attached), fileNam...

environ 6 ans il y a | 0

A résolu


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

plus de 6 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

plus de 6 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

plus de 6 ans il y a