Community Profile

photo

Will


Last seen: bijna 3 jaar ago Active since 2017

Followers: 0   Following: 0

Message

Statistics

All
  • First Answer
  • Revival Level 1
  • Solver
  • First Review

View badges

Feeds

View by

Answered
Exclude files for CodeCoveragePlugin
I came here hoping to find an answer to this question, but unfortunately there isn't one yet. The only solution I can come up w...

meer dan 3 jaar ago | 0

Solved


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

ongeveer 4 jaar ago

Solved


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

ongeveer 4 jaar 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...

ongeveer 4 jaar ago

Solved


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

ongeveer 4 jaar ago

Solved


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

ongeveer 4 jaar ago

Solved


Getting the row and column location from a matrix
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to get <http://www.mathwo...

ongeveer 4 jaar ago

Solved


Generate a string like abbcccddddeeeee
This is the string version of Problem 1035. <http://www.mathworks.com/matlabcentral/cody/problems/1035-generate-a-vector-like-1-...

ongeveer 4 jaar ago

Solved


All capital?
Are all the letters in the input string capital letters? Examples: 'MNOP' -> 1 'MN0P' -> 0

ongeveer 4 jaar ago

Solved


Determine the length of a string of characters
Determine the length of a string of characters

ongeveer 4 jaar ago

Solved


y equals x divided by 2
function y = x/2

ongeveer 4 jaar ago

Solved


Is the input divisible by 3?
Return true if the input is divisible by 3 and false if not.

ongeveer 4 jaar ago

Solved


Remove NaN ?
input -> matrix (n*m) with at least one element equal to NaN; output -> matrix(p*m), the same matrix where we deleted the enti...

ongeveer 4 jaar ago

Solved


Binary
Given a positive, integer n, create a function that returns the respective binary number in the form of a vector. Example: ...

ongeveer 4 jaar ago

Solved


Find the logic
There exists one logic in between input and output. Find it (easy math). Example 1: x=13 then y=339; Example 2: x=26...

ongeveer 4 jaar ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

ongeveer 4 jaar ago

Solved


02 - Vector Variables 2
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_2b.png>>

ongeveer 4 jaar ago

Solved


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

ongeveer 4 jaar ago

Solved


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

ongeveer 4 jaar ago

Question


How do I assign a context menu to only the column header row of a uitable?
Using MATLAB R2015b... I'm doing something like this: Table = uitable(...); TableMenu = uicontextmenu; MenuItem1 = u...

ongeveer 7 jaar ago | 0 answers | 0

0

answers