Function(1)
Use this function for some points (free)
function y = your_fcn_name(x)
y = x^2 + 2;
end
3年弱 前
解決済み
Functions For Points
Use this fucntion to earn some free points!
function y = your_fcn_name(x)
y = x^2 + 5;
end
3年弱 前
解決済み
Easy Function
Use this function to earn some points (hit submit):
function y = your_fcn_name(x)
y = x^2 + 10;
end
3年弱 前
解決済み
Function(2)
Use this function to earn a few points.
function y = your_fcn_name(x)
y = x^2 - 8;
end
3年弱 前
解決済み
Function(3)
Use this function to earn some points on your cody journey!
function y = your_fcn_name(x)
y = x^2 - 12;
end
3年弱 前
解決済み
Function(4)
Hit submit for some points!
function y = your_fcn_name(x)
y = x^2 - 4;
end
3年弱 前
解決済み
Easy Function(1)
Use this function to earn some cody points!
function y = your_fcn_name(x)
y = x^2 - 1;
end
3年弱 前
解決済み
Easy Function(3)
Hit submit for some free points.
function y = your_fcn_name(x)
y = x^2 + 30;
end
3年弱 前
解決済み
Easy Function(4)
Use the submit button to earn points
function y = your_fcn_name(x)
y = x^2 + 40;
end
3年弱 前
解決済み
COMPSC 200 help
Use this problem to earn some free points towards your 1,000. Just hit submit!
function y = your_fcn_name(x)
y = x^2 + 50;
e...
3年弱 前
解決済み
CMPSC 200 help(2)
Use this problem to earn some easy points towards your 1,000! Just hit submit.
function y = your_fcn_name(x)
y = x^2 + 32;
e...
3年弱 前
解決済み
Easy Function(2)
Hit the submit button for some cody points!
function y = your_fcn_name(x)
y = x^2 + 20;
end
3年弱 前
解決済み
Create matrix of replicated elements
Given an input element x, and the dimensions, (m, n) return a matrix of size m x n filled with element x.
Example:
Input: ...
3年弱 前
解決済み
Chain multiplication - 01
Say, you are given two matrices - A (shape= 3*4) and B(shape = 4*5).
If you multiply these two matrices, the resultant matrix w...
Find the standard deviation of an array
given an array, find it's standard deviation without using the std() function. Use sample formula (n-1) for standard deviation a...
Calculating Ring Area
In two-dimensional space, a ring can be constructed by using two concentric circles. Determine the area of a ring which has r1 ...