Community Profile

photo

Thurman Ye


Active since 2019

Statistics

All
  • Solver

View badges

Content Feed

View by

Question


Why does property access work when subsref is overriden?
Below is a class which subclasses double and does no more than storing the extra instance variable y, initialized to 123. class...

5 years ago | 0 answers | 0

0

answers

Question


Can the MATLAB text editor's scrollbars be hidden?
The horizontal and vertical scrollbars can take up valuable real estate when working with a single monitor. Typically, I have at...

5 years ago | 0 answers | 2

0

answers

Solved


Nth roots of unity
First, find the n nth roots of unity. eg if n = 6, find the n distinct (complex) numbers such that n^6 = 1. <https://en.wiki...

5 years ago

Solved


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

5 years ago