Community Profile

photo

PeterB


Last seen: meer dan 2 jaar ago Active since 2017

Statistics

All
  • Thankful Level 1
  • First Answer
  • Commenter
  • Solver

View badges

Content Feed

View by

Question


how do I find where a function is defined (equivalent of "which" command in bash)
When I start Matlab on one of my work machines, I get the message: "Warning: Function count has the same name as a MATLAB built...

meer dan 2 jaar ago | 2 answers | 0

2

answers

Question


Matlab from command line (-nodisplay -nojvm) segmentation violation on exit, on Mac OS
Certain programs crash when I try to exit them from the command line (or call them within Python). (The weird thing is I have no...

meer dan 4 jaar ago | 1 answer | 0

1

answer

Solved


5th Time's a Charm
Write a function that will return the input value. However, your function must fail the first four times, only functioning prope...

meer dan 6 jaar ago

Solved


Acid and water
Assume that there is a 100 liter tank. It is initially filled with just distilled water. It is continuously drained at R...

meer dan 6 jaar ago

Solved


Number of Even Elements in Fibonacci Sequence
Find how many even fibonacci numbers are available in the first d numbers. Consider the following first 14 numbers 1 1 2...

meer dan 6 jaar ago

Solved


The 5th Root
Write a function to find the 5th root of a number. It sounds easy, but the typical functions are not allowed (see the test su...

meer dan 6 jaar ago

Question


mrdivide undocumented feature?
I have A = [0 1 ; 3 2] and B = [1 2]. For A / B, I get [0.4 ; 1.4], which is a least squares solution. Here is my problem: wher...

meer dan 6 jaar ago | 1 answer | 0

1

answer

Question


How to resend an invitation in Cody Coursework
In Cody Coursework, one of my students needs their invitation re-sent. According to this help page: https://au.mathworks.com/hel...

meer dan 6 jaar ago | 0 answers | 0

0

answers

Question


How do I invite students to Cody Coursework without using their emails
According to this page http://au.mathworks.com/help/coursework/ug/invite-students.html , the only way to invite students is to c...

meer dan 6 jaar ago | 0 answers | 1

0

answers

Answered
Why am I not able to play videos on the MathWorks website?
why not just put them on Youtube? my device won't play your videos but does play Youtube

meer dan 6 jaar ago | 0

Problem


Practical 1, Question 2b (incomplete)
See practical_1.pdf, question 2. Currently incomplete!

meer dan 6 jaar ago | 0 | 4 solvers

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

meer dan 6 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...

meer dan 6 jaar 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 ...

meer dan 6 jaar ago

Solved


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

meer dan 6 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 ...

meer dan 6 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...

meer dan 6 jaar ago

Solved


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

meer dan 6 jaar 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...

meer dan 6 jaar ago

Solved


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

meer dan 6 jaar ago

Solved


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

meer dan 6 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...

meer dan 6 jaar ago

Solved


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

meer dan 6 jaar ago

Solved


Is my wife right?
Regardless of input, output the string 'yes'.

meer dan 6 jaar ago

Solved


Distance walked 3D
suppose you go from x-y-z coordinates [3,4,2] to [0,0,2] to [0,1,2] to [1,1,2], to [1,1,20] then you walked 25 units of distance...

meer dan 6 jaar ago

Solved


Replace May with April
For instance, if the input is input_str = 'The flowers may bloom in April'; then the output is output_str = 'The flo...

meer dan 6 jaar ago

Solved


Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x. Example: Input: ...

meer dan 6 jaar ago

Solved


Matlab Basics - Create a row vector
Write a Matlab script to create a row vector of 10 consecutive numbers x = [1 2 3 4 5 6 7 8 9 10]

meer dan 6 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:...

meer dan 6 jaar ago