已解决


Momentum of an Object
P is momentum, m is mass, and v is velocity. Calculate the momentum for an object.

4 years 前

已解决


Equilateral Triangle
The length of one side of the equilateral triangle is a. Calculate the area of ​​the equilateral triangle.

4 years 前

已解决


Speed
x is distance, v is speed, and t is time. Calculate the speed for an object.

4 years 前

已解决


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

4 years 前

已解决


Simple Matrix
Make the following matrix without typing it in one by one. [1 2 3; 2 4 6; 4 8 12] x=[1 2 3].

4 years 前

已解决


Box
Give the volume of a box, x is equal to the body diagonal.

4 years 前

已解决


Find the sum of all integers in a given matrix
Finding sum of all integers in a given matrix

4 years 前

已解决


Create a vector with n repeated values of a number x
If x=3 and n=7 then the vector y would be y=[3 3 3 3 3 3 3]

4 years 前

已解决


Create logarithmically spaced values
Given three numbers a,b,n with b>a, create a vector y with n logarithmic spaced values between 10^a and 10^b. Thus, if a = -2, ...

4 years 前

已解决


Create a vector of the first n naturnal numbers
If n = 7, your program should return a vector y, where y = [1 2 3 4 5 6 7].

4 years 前

已解决


Element-wise vector product
Given two vectors x and y, compute their element-wise product z. Thus, if x = [1 3 5] and y = [0.5 -1 2], then z = [1*0.5...

4 years 前

已解决


Vector raised to a power (element-wise)
Given a vector A and a number x, raise each element of the vector to the power of x. Thus, if A = [2 5 7 1] and x = 0.5, then ...

4 years 前

已提交


Time Division Multiplexing of four signals using simulink
Time Division Multiplexing (TDM) of 4 signals using simulink (MATLAB)

4 years 前 | 12 次下载 |

Thumbnail

已提交


3 D plot of ADCP data containing all information.
3 D plotting of ADCP(Acoustic Doppler Current Profiler) data on MATLAB.

4 years 前 | 3 次下载 |

Thumbnail

已回答
How to create monthly average from daily data?
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...

4 years 前 | 0

已回答
Calculate mean from daily to monthly values
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...

4 years 前 | 0

已回答
Sum the daily data based on month and year
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...

4 years 前 | 0

已回答
How to convert daily data to monthly?
You can try this; https://in.mathworks.com/matlabcentral/fileexchange/74497-daily-data-to-monthly-average-sum-in-matlab?s_tid=L...

4 years 前 | 0

已提交


Nyquist–Shannon sampling theorem
Sampling theorem with comments

4 years 前 | 2 次下载 |

Thumbnail

已提交


Daily data to monthly average/sum in MATLAB
Convert the daily available data to both monthly average and monthly sum

4 years 前 | 2 次下载 |

Thumbnail

已提交


OTSU Method for thresholding from gray level histograms
Step by step implementation of OTSU method

4 years 前 | 3 次下载 |

Thumbnail

已回答
Plotting only highest peaks from multiple signals
I think you are looking for this. fs = 2e3; t = (0:1/fs:1-1/fs)'; A= sin(2*pi*19*t); B= chirp(t-0.6,61,t(end),603,'quadrati...

5 years 前 | 1

已解决


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

5 years 前

已解决


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

5 years 前

已解决


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

5 years 前

已解决


Sorted highest to lowest?
Return 1 if the input is sorted from highest to lowest, 0 if not. Example: 1:7 -> 0 [7 5 2] -> 1

5 years 前

已解决


Given a matrix A return a vector of the product of the elements in each column using a loop without using prod.
--------------------- for m: 3 1 3 3 10 1 9 1 9 4 1 4 5 6 5 ...

5 years 前

已解决


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 years 前

已解决


Check if number is a square number
Test if integer i is a square number. Return logical true if it is.

5 years 前

已解决


An Ohm's Law Calculator
*BACKGROUND / MOTIVATION:* Many important observations in math and science can be described by short, but powerful, equations...

5 years 前

加载更多