photo

Daniel Lee


2015년부터 활동

Followers: 0   Following: 0

통계

Cody

24 문제
11 답안

순위
N/A
of 300,364

평판
N/A

참여
0 질문
0 답변

답변 채택
0.00%

획득한 표
0

순위
 of 20,934

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
10,455
of 168,407

참여
24 문제
11 답안

점수
580

배지 수
5

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Quiz Master
  • Commenter
  • Puzzler
  • Creator
  • Solver

배지 보기

Feeds

보기 기준

문제를 풀었습니다


UICBioE240 problem 1.3
Find the length of a vector. So if A = [1 1 1 1 1] Then B = 5

대략 10년 전

문제


UICBioE240 2.10
Given a vector of numbers, give the difference between the maximum and minimum values.

대략 10년 전 | 0 | 솔버 수: 175

문제


UICBioE240 2.8
Convert x number of hours into seconds.

대략 10년 전 | 2 | 솔버 수: 189

문제


UICBioE240 2.7
Given x1 and x2, create a 3x3x3 matrix Y where (:,:,1) has all values of x1*x2, (:,:,2) has all values of x1-x2, and (:,:,3) has...

대략 10년 전 | 0 | 솔버 수: 48

문제


UICBioE240 2.3
Make a 4D matrix of 4x4x3x4 containing all zeros.

대략 10년 전 | 1 | 솔버 수: 190

문제


UICBioE240 2.2
Make a 3x4 matrix that contains all ones.

대략 10년 전 | 0 | 솔버 수: 178

문제


UICBioE240 2.1
This will be useful later in the course, in conjunction to clc and clear all, what is the command to close all figure windows th...

대략 10년 전 | 1 | 솔버 수: 191

문제를 풀었습니다


Say something funny
Say something funny, or not. Your solution will be (fully automatically and objectively) scored based on how clever or funny ...

대략 10년 전

문제


UICBioE240 problem 1.18
exp(pi/5*i) and exp(pi/5i). Is there any difference in result? Write yes or no as a string.

대략 10년 전 | 1 | 솔버 수: 196

문제


UICBioE240 problem 1.17
In the expression (2+5i), how does MATLAB read the expressions A = 2+5i B = 2+5*i C = both are okay Write capital letter a...

대략 10년 전 | 1 | 솔버 수: 168

문제


UICBioE240 problem 1.16
sin^2(pi/6) + cos^2(pi/6)

대략 10년 전 | 1 | 솔버 수: 172

문제


UICBioE240 problem 1.15
Calculate: sin(pi/6) cos (pi) tan(pi/2)

대략 10년 전 | 0 | 솔버 수: 152

문제


UICBioE240 problem 1.14
Solve 3^x = 17

대략 10년 전 | 1 | 솔버 수: 159

문제


UICBioE240 problem 1.12
The mathematical quantities e^x, ln x and log x are calculated using the expression exp(x), log(x) and log10(x) respectively. ...

대략 10년 전 | 0 | 솔버 수: 101

문제


UICBioE240 problem 1.11
Store a series of numbers into a 4 by 4 matrix, starting with the first few positions going right and down, and leaving the rest...

대략 10년 전 | 0 | 솔버 수: 35

문제


UICBioE240 problem 1.10
Find the number of cells in a bioreactor after a given time when doubling time is dd and initial number of cells is x. So if ...

대략 10년 전 | 1 | 솔버 수: 125

문제


UICBioE240 problem 1.9
Swap the first and last columns of a matrix. So if A = [12 4 7; 5 1 4]; B = [7 4 12; 4 1 5]; ...

대략 10년 전 | 0 | 솔버 수: 128

문제


UICBioE240 problem 1.8
Given a list of grades in a class, write a script that gives the 2nd highest grade in the class and the average for the class. ...

대략 10년 전 | 1 | 솔버 수: 133

문제


UICBioE240 problem 1.7
Find the other two angles of a right triangle given the two of the sides. So if A = [1 1] B = [45 45]

대략 10년 전 | 1 | 솔버 수: 100

문제


UICBioE240 problem 1.6
Find the tangent line of a right triangle given the two of the sides. So if A = [1 1] B = sqrt(2)

대략 10년 전 | 1 | 솔버 수: 177

문제


UICBioE240 problem 1.5
Find the size of the matrix, then multiply both values by 10 and make it into a column vector. So if A = [ 1 2 3; ...

대략 10년 전 | 0 | 솔버 수: 160

문제


UICBioE240 problem 1.4
So if A = [ 1 2 3; 4 5 6; 7 8 9] B = [ 3 3]

대략 10년 전 | 1 | 솔버 수: 183

문제


UICBioE240 problem 1.3
Find the length of a vector. So if A = [1 1 1 1 1] Then B = 5

대략 10년 전 | 1 | 솔버 수: 208

문제


UICBioE240 problem 1.2
Convert a column vector into a row vector. So if A = [1; 2; 3] Then B = [ 1 2 3]

대략 10년 전 | 3 | 솔버 수: 205

문제


UICBioE240 problem 1.1
Remove the middle row from a matrix, assuming # of rows is odd. So if A = [ 1 2 3; 4 5 6; 7 8 9] the...

대략 10년 전 | 2 | 솔버 수: 145

문제


UICBioE240 problem 1.13
Compute the following - y = x^5/(x^-1) and y = (1-(1/x^5))^-1. Have the final answer of y to equal a 1 by 2 vector.

대략 10년 전 | 0 | 솔버 수: 168

문제를 풀었습니다


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

대략 10년 전

문제를 풀었습니다


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

대략 10년 전

문제를 풀었습니다


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

대략 10년 전

문제를 풀었습니다


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

대략 10년 전

더 보기