photo

Marisa


Active since 2014

Followers: 0   Following: 0

Message

Statistics

Cody

9 Problems
14 Solutions

RANK
N/A
of 300,780

REPUTATION
N/A

CONTRIBUTIONS
0 Questions
0 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 21,086

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
16,201
of 171,018

CONTRIBUTIONS
9 Problems
14 Solutions

SCORE
345

NUMBER OF BADGES
4

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Quiz Master
  • Speed Demon
  • Creator
  • Solver

View badges

Feeds

View by

Problem


Replacing a row
For matrix G=[1 2 3; 4 5 6; 7 8 9] Replace the 2nd row with 8s **remember to create matrix G

11 years ago | 0 | 387 solvers

Solved


Flipping
Write code that can reverse the vector without using any sort of loop. Example Given the input vector A = [ 1 2 3 4 5...

11 years ago

Problem


Flipping
Write code that can reverse the vector without using any sort of loop. Example Given the input vector A = [ 1 2 3 4 5...

11 years ago | 2 | 784 solvers

Problem


Counting down
Create a vector that counts from 450 to 200 in increments of 10.

11 years ago | 5 | 484 solvers

Solved


Vectors counting by 2
Create a vector numbers from 7 to 15 in increments of 2

11 years ago

Problem


Vectors counting by 2
Create a vector numbers from 7 to 15 in increments of 2

11 years ago | 2 | 534 solvers

Solved


ASCii Code
Using matlab, give the symbol that is associated with ASCii code 122

11 years ago

Problem


ASCii Code
Using matlab, give the symbol that is associated with ASCii code 122

11 years ago | 3 | 299 solvers

Solved


ASCii Code
Using Matlab get the ASCii for '?'

11 years ago

Problem


ASCii Code
Using Matlab get the ASCii for '?'

11 years ago | 3 | 285 solvers

Solved


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

11 years ago

Problem


Squaring Matrix
Square the following matrix using matlab % A = 1 2 3 4 5 6 7 8 So new matrix should display...

11 years ago | 1 | 698 solvers

Solved


Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...

11 years ago

Problem


Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...

11 years ago | 3 | 488 solvers

Solved


Building matrices
If you have matrix A, create matrix B using matrix A as an "element" A = [1 2 3 4; 5 6 7 8...

11 years ago

Problem


Building matrices
If you have matrix A, create matrix B using matrix A as an "element" A = [1 2 3 4; 5 6 7 8...

11 years ago | 2 | 396 solvers

Solved


Complex number
For complex number c=a+bi, write code that will add a and b together.

11 years ago

Solved


Remainder
Make 'y' equal to the remainder of 27 divided by 5. When x=27 and t=5

11 years ago

Solved


Rounding
Round 10.67 and make 'y' equal to that number.

11 years ago

Solved


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

11 years ago

Solved


length of a vector
Find twice the length of a given vector.

11 years ago

Solved


Solving Quadratic Equations (Version 1)
Quadratic equations have the form: ax^2 + bx + c = 0. Example: x^2 + 3x + 2 = 0, where a = 1, b = 3, and c = 2. The equation has...

11 years ago

Solved


Wind Chill Computation
On a windy day, a temperature of 15 degrees may feel colder, perhaps 7 degrees. The formula below calculates the "wind chill," i...

11 years ago