photo

Owen Paul

MathWorks

Last seen: circa 4 anni fa Attivo dal 2019

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

0 Domande
1 Risposta

Cody

1 Problema
25 Soluzioni

Discussions

1 Punto principale

RANK
12.098
of 300.753

REPUTAZIONE
4

CONTRIBUTI
0 Domande
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
2

RANK
 of 21.075

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
15.477
of 170.858

CONTRIBUTI
1 Problema
25 Soluzioni

PUNTEGGIO
365

NUMERO DI BADGE
4

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
1 Punto principale

NUMERO MEDIO DI LIKE
4

  • Quiz Master
  • Curator
  • Creator
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risolto


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

oltre 5 anni fa

Risolto


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

oltre 5 anni fa

Discussion


Student Ambassador Communities Helping Students Learn MATLAB at a Distance
One community within MathWorks that has been helping students continue their learning is MATLAB Student Ambassadors. Despite new...

oltre 5 anni fa | 4

Risolto


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

oltre 5 anni fa

Risolto


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

oltre 5 anni fa

Risolto


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

oltre 5 anni fa

Risolto


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

oltre 5 anni fa

Risolto


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

oltre 5 anni fa

Risolto


Create a vector
Create a vector from 0 to n by intervals of 2.

oltre 5 anni fa

Risolto


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

oltre 5 anni fa

Risolto


multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...

oltre 5 anni fa

Risolto


Multiply by 3
Given the variable x as your input, multiply it by three and put the result in y.

oltre 5 anni fa

Problema


Find 0 in array
Given array find where there 0 is.

quasi 6 anni fa | 1 | 55 risolutori

Risolto


Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.

quasi 6 anni fa

Risolto


Min of a Matrix
Return the minimum value in the given matrix.

quasi 6 anni fa

Risolto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

quasi 6 anni fa

Risolto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

quasi 6 anni fa

Risolto


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

quasi 6 anni fa

Risolto


Find max
Find the maximum value of a given vector or matrix.

quasi 6 anni fa

Risolto


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risolto


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

quasi 6 anni fa

Risposto
Setting figure size in Livescript (globally)
Hi Tim, Just ran into this issue myself and I was able to edit the figure's position property to decrease the size which also ...

circa 6 anni fa | 2

Risolto


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

oltre 6 anni fa