Feeds
已解决
Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...
5 years 前
已解决
Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...
5 years 前
已解决
Calculate Amount of Cake Frosting
Given two input variables |r| and |h|, which stand for the radius and height of a cake, calculate the surface area of the cake y...
5 years 前
已解决
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
5 years 前
已回答
Matlab learning tutorials or online videos or classes from experts
https://matlabacademy.mathworks.com/
Matlab learning tutorials or online videos or classes from experts
https://matlabacademy.mathworks.com/
5 years 前 | 0
已回答
creating multiple copies of an array
x = [0 1 0 0 1 1 1 0 1 0]; sz=5000; for i=1:sz A{i}=x; end
creating multiple copies of an array
x = [0 1 0 0 1 1 1 0 1 0]; sz=5000; for i=1:sz A{i}=x; end
6 years 前 | 1
已回答
Error on Beginner Code (Tax Calculation)
x = input('Enter your net income:'); if x<=15000 t = 0; elseif x>15000 && x<=25000 t = (x-15000) * 0.05; elseif x>25000 ...
Error on Beginner Code (Tax Calculation)
x = input('Enter your net income:'); if x<=15000 t = 0; elseif x>15000 && x<=25000 t = (x-15000) * 0.05; elseif x>25000 ...
6 years 前 | 0
| 已接受
提问
error while executing if condition
Dear Friends in my script coding.. i used if condition in which a solution is obtained within the condition loop and I need t...
9 years 前 | 1 个回答 | 0





