Karthick S
Anna University
Followers: 0 Following: 0
Statistics
RANK
8,020
of 295,569
REPUTATION
6
CONTRIBUTIONS
1 Question
3 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
1
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
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 years ago
Solved
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 years ago
Solved
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 years ago
Solved
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 years ago
Matlab learning tutorials or online videos or classes from experts
https://matlabacademy.mathworks.com/
4 years ago | 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
5 years ago | 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 ...
5 years ago | 0
| accepted
Question
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 years ago | 1 answer | 0