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년 전
문제를 풀었습니다
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년 전
문제를 풀었습니다
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년 전
문제를 풀었습니다
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년 전
답변 있음
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년 초과 전 | 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년 전 | 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년 전 | 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년 초과 전 | 답변 수: 1 | 0





