Community Profile

photo

PeterB


Last seen: plus de 2 ans il y a Actif depuis 2017

Followers: 0   Following: 0

Contact

Statistiques

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

Afficher les badges

Feeds

Afficher par

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

presque 3 ans il y a | 2 réponses | 0

2

réponses

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

plus de 4 ans il y a | 1 réponse | 0

1

réponse

A résolu


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

plus de 6 ans il y a

A résolu


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

plus de 6 ans il y a

A résolu


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

plus de 6 ans il y a

A résolu


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

plus de 6 ans il y a

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

presque 7 ans il y a | 1 réponse | 0

1

réponse

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

presque 7 ans il y a | 1 réponse | 0

0

réponse

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

presque 7 ans il y a | 1 réponse | 1

0

réponse

A répondu
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

presque 7 ans il y a | 0

Problème


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

presque 7 ans il y a | 0 | 4 solveurs

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

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

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

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

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

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

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

presque 7 ans il y a

A résolu


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

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

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

presque 7 ans il y a

A résolu


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.

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

A résolu


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

presque 7 ans il y a

A résolu


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]

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

presque 7 ans il y a