Community Profile

photo

Sarka Voracova


Last seen: 6 dagar ago Active since 2023

Followers: 0   Following: 0

Statistics

  • Quiz Master
  • Curator
  • Community Group Solver
  • Speed Demon
  • Creator
  • Introduction to MATLAB Master
  • Commenter
  • Promoter
  • Solver

View badges

Feeds

View by

Solved


Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...

ungefär 2 månader ago

Solved


3D Plots and Colorbars
Use the matrices X, Y, and Z provided in the function template to create a surface plot. Add a colorbar to the surface plot and ...

ungefär 2 månader ago

Solved


Create a figure and plot data
Given two data vectors (x,y), open a new figure and plot the data. Return the figure handle.

ungefär 2 månader ago

Solved


Reproduce this plot!
Write a function that will take a dataset (x,y), a best fit model (model), and the upper and lower prediction bounds (lb,ub) for...

ungefär 2 månader ago

Solved


Make a Plot with Functions
Make a plot and test

ungefär 2 månader ago

Solved


Plotting Practice
Plot cos(x) vs x as shown in the figure below. Include the appropriate title, x-label, and y-label. Note, it is case sensitive. ...

ungefär 2 månader ago

Solved


Back to basics 13 - Input variables
Covering some basic topics I haven't seen elsewhere on Cody. Return as a string the name of the input variable to the functio...

ungefär 2 månader ago

Solved


Number of toolboxes?
Return a number equal to the number of toolboxes available to the Cody solvers.

ungefär 2 månader ago

Solved


Tell me the slope
Tell me the slope, given a vector with horizontal run first and vertical rise next. Example input: x = [10 2];

ungefär 2 månader ago

Solved


Sieve of Eratosthenes - 02
"Sift the Two's and Sift the Three's, The Sieve of Eratosthenes. When the multiples sublime, The numbers that remain a...

ungefär 2 månader ago

Solved


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

ungefär 2 månader ago

Solved


Diagonal Pattern
For a positive integer |n|, return an |nXn| matrix |mat| such that the value of each element in row |i| and column |j| is given ...

ungefär 2 månader ago

Solved


Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...

ungefär 2 månader ago

Solved


Get all prime factors
List the prime factors for the input number, in decreasing order. List each factor. If the prime factor occurs twice, list it as...

ungefär 2 månader ago

Solved


find "greatest common divisor" of two integer value
A function to find Greatest Common Divisor of two integer input E.G. x=-18 y=96 output should be +6 x=-18; y=96; >>your...

ungefär 2 månader ago

Solved


Create sequnce 1 4 9 16 25.........
Create sequnce 1 4 9 16 25......... upto entered input value using matlab scripting commands. Let y be output and x be input

ungefär 2 månader ago

Solved


Draw a '0' in a one matrix!

ungefär 2 månader ago

Solved


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

ungefär 2 månader ago

Solved


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

ungefär 2 månader ago

Solved


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

ungefär 2 månader ago

Solved


to the 2 all elements
to the 2 all elements

ungefär 2 månader ago

Solved


the average value of the elements
Calculate the average value of the elements in the array

ungefär 2 månader ago

Solved


Converts numbers into characters
Converts numbers into characters

ungefär 2 månader ago

Solved


Double all elements in the array
Duplicate all elements in the array

ungefär 2 månader ago

Solved


Find the max element of the array
Find the max element of the array

ungefär 2 månader ago

Solved


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

ungefär 2 månader 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: Input...

ungefär 2 månader ago

Solved


calculate the length of matrix
input 1 array, calculate the length

ungefär 2 månader ago

Solved


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

ungefär 2 månader 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 ...

ungefär 2 månader ago

Load more