Community Profile

photo

Karthick S


Anna University

Last seen: 3 days ago Active since 2016

Followers: 0   Following: 0

Message

Statistics

All
  • First Review
  • Solver
  • Knowledgeable Level 1
  • First Answer
  • Explorer
  • Thankful Level 1

View badges

Feeds

View by

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...

3 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...

3 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...

3 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:...

3 years ago

Answered
Matlab learning tutorials or online videos or classes from experts
https://matlabacademy.mathworks.com/

4 years ago | 0

Answered
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

4 years ago | 1

Answered
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 ...

4 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...

7 years ago | 1 answer | 0

1

answer