Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
7년 초과 전
문제를 풀었습니다
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
7년 초과 전
문제를 풀었습니다
Alphabetize by last name
Given a list of names in a cell array, sort the list by the last name. So if
list = {'Barney Google','Snuffy Smith','Dagwood ...
Interpolator
You have a two vectors, a and b. They are monotonic and the same length. Given a value, va, where va is between a(1) and a(end...
7년 초과 전
문제를 풀었습니다
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so:
x = [1 2 3 4]
Commas are optional, s...
답변 있음 How to solve DE by matlab
Usually, ode45, ode23 and some other commands can solve DE. However I think in this homework, you should code yourself.
답변 있음 distance measurements from image to world
I don't think there is a specialized function or toolbox in Matlab to solve your question. However you can have the distance of ...
대략 9년 전 | 0
답변 있음 importing csv file into matlab
I think it is because the csv file contains too many strings. csvread is to load data not string. You can use "Improt data" on y...
대략 9년 전 | 0
답변 있음 EM Simulation of modified capacitor structure
What you want to solve is a partial differential equation (EQS or MQS equations). In matlab, PDEtool may help you. However, I th...