Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
str='MATLABian';
str1='My name';
str3='kjhsdfs';
y_correct ='MATLABian My name kjhsdfs';
assert(strcmp(your_fcn_name(str,str1,str3),y_correct)==1)
y =
cell
'MATLABian My name kjhsdfs'
|
2 | Pass |
str='This';
str1='is';
str3='MATLAB';
y_correct ='This is MATLAB';
assert(strcmp(your_fcn_name(str,str1,str3),y_correct)==1)
y =
cell
'This is MATLAB'
|
Celsius to Fahrenheit converter
280 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
229 Solvers
Returning a "greater than" vector
149 Solvers
Side of an equilateral triangle
1512 Solvers
Sum of odd numbers in a matrix
231 Solvers