문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

답변 있음
Plotting date and time
This link should help solve your problem

2년 초과 전 | 0

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

문제를 풀었습니다


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

2년 초과 전

답변 있음
Get user input in app designer using toggle button group
Create two seperate MATLAB functions, one for keeping the data and other for excluding the data. Something similar to: function...

2년 초과 전 | 0

| 수락됨

답변 있음
Add additional information to scatter plot points
You can use datatips for doing this. Read more about datatips here.

2년 초과 전 | 0

답변 있음
write data of textfile with different amount of value in cell array
Matrices can't be used for different row sizes. Use cell array to do so. z_irl = cell(1,5); irl = readtable("min_vel12_halfpi....

2년 초과 전 | 0

| 수락됨

답변 있음
I have these boxplots and I need to show the boxplots in groups.
Try boxcharts instead of boxplots, it is more flexible and has an option for plot grouping by color. Refer to this link for more...

2년 초과 전 | 1

답변 있음
Is there a way to write data to excel, on different sheets, with each sheet named?
In the writetable/writematrix/writecell method, you can specify the name of the sheet you want to write the data to. If given sh...

2년 초과 전 | 1

| 수락됨