統計
All
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...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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...
4年以上 前
解決済み
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:...
4年以上 前
回答済み
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
約5年 前 | 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 ...
約5年 前 | 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...
8年以上 前 | 1 件の回答 | 0