photo

Jonathan


Aalto

Last seen: 3 years ago Active since 2018

Followers: 0   Following: 0

Message

Software developer turning computer sceince researcher. Machine Learning, Data Mining, Reinforcement Learning, Linguistics, Natural Language Processing
Professional Interests: Linguistics, AI, Reinforcement Learning, Machine Learning, Data Mining

Statistics

All
MATLAB Answers

0 Questions
1 Answer

Cody

0 Problems
3 Solutions

RANK
22,208
of 297,503

REPUTATION
2

CONTRIBUTIONS
0 Questions
1 Answer

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,449

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
71,004
of 159,017

CONTRIBUTIONS
0 Problems
3 Solutions

SCORE
40

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
find a string in a character array
The answer by Loginatorist was incorrect for my problem that is I believe the same as described by the OP. Below is an example o...

6 years ago | 1

Solved


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

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

6 years ago

Solved


Make a 1 hot vector
Make a vector of length _N_ that consists of all zeros except at index _k_, where it has the value 1. Example: Input ...

6 years ago