Community Profile

photo

Cory Johnson


NCSU CSC

2015년부터 활동

Mechanical Engineering Student at NC State.

통계

All
  • First Review
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Scavenger Finisher
  • CUP Challenge Master
  • Commenter
  • Promoter
  • Solver

배지 보기

Content Feed

보기 기준

답변 있음
Is there a good way to get Cody Coursework results to other grading programs?
http://www.mathworks.com/matlabcentral/fileexchange/60002-codygrades This file should work!

7년 초과 전 | 0

| 수락됨

답변 있음
Save each vector iteration into a matrix
There are lots of ways to organize data in MATLAB. Below I have shown 3 ways to do this. I think you're looking for the last met...

7년 초과 전 | 2

| 수락됨

질문


Is there a good way to get Cody Coursework results to other grading programs?
Cody Coursework results are given by each submissions. I would like to group them by student instead.

7년 초과 전 | 답변 수: 1 | 0

1

답변

제출됨


codygrades
This code generates a CSV file to upload Cody Coursework scores to Moodle

7년 초과 전 | 다운로드 수: 1 |

답변 있음
solving an equation in matlab
This can be done with a for loop and symbolic variables. It is good practice to assign contstants at the top of the script: ...

7년 초과 전 | 0

문제를 풀었습니다


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

7년 초과 전

문제를 풀었습니다


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

7년 초과 전

문제를 풀었습니다


Create a row array using double colon operator
Create a row array from 9 to 1, using the double colon operator.

7년 초과 전

문제를 풀었습니다


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

7년 초과 전

문제를 풀었습니다


Fahrenheit to Celsius using multiple statements
Given a Fahrenheit value F, convert to a Celsius value C. While the equation is C = 5/9 * (F - 32), as an exercise use two state...

7년 초과 전

답변 있음
Moving players into teams - equal as possible random
What a great question! Try matching the highest and lowest scores, then filling in the middle with the average score that wou...

7년 초과 전 | 0

문제를 풀었습니다


Narcissistic problem
How many likes has this problem?

대략 8년 전

문제를 풀었습니다


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

8년 초과 전

문제를 풀었습니다


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

8년 초과 전

문제를 풀었습니다


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

8년 초과 전

문제를 풀었습니다


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

8년 초과 전

문제를 풀었습니다


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]

8년 초과 전

문제를 풀었습니다


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

8년 초과 전

문제를 풀었습니다


Function call in expression: Reduced pricing.
Write a single statement that assigns cartTotal with the discounted cost of items 1 and 2. Function DiscountedPrice will return ...

8년 초과 전

문제를 풀었습니다


Function definition: Double down.
* Complete the DoubleDown function to return twice the initialValue.

8년 초과 전

문제를 풀었습니다


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

8년 초과 전

문제를 풀었습니다


Create a Standard Size Vector
Given an input x, create a row vector y from 1 to x with 5 elements.

8년 초과 전

문제를 풀었습니다


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

8년 초과 전

문제를 풀었습니다


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

8년 초과 전

문제를 풀었습니다


Declaring a string
* Assign streetAddress with the string 1313 Mockingbird Lane.

8년 초과 전

문제를 풀었습니다


Logic variables
* Assign isAvailable with true.

거의 9년 전

문제를 풀었습니다


Character variable: Compass direction
* Assign compassDirection with sensorReading's value. Both are character variables.

거의 9년 전

문제를 풀었습니다


Declaring a character
* Assign middleInitial with the character T.

거의 9년 전

문제를 풀었습니다


Write an expression
Assigns finalResult with firstSample plus secondSample, squared, then divided by 3. Ex: If firstSample is 18 and secondSample is...

거의 9년 전

문제를 풀었습니다


Pizza value using expression with parentheses
Pizza prices are typically listed by diameter, rather than the more relevant feature of area. Compute a pizza's value (cost per ...

거의 9년 전

더 보기