
Struggling in MATLAB
Statistics
RANK
239,780
of 260,642
REPUTATION
0
CONTRIBUTIONS
17 Questions
3 Answers
ANSWER ACCEPTANCE
82.35%
VOTES RECEIVED
0
RANK
of 17,909
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Question
How to remove bulbs in the mouse trajectory?
I am trying to remove the bulbs in red circles in the picture to get a smooth trajectory as shown in the picture. The mouse may...
3 days ago | 1 answer | 0
1
answerQuestion
Why 'NaT' (class: datetime) does not work with find function?
I have a table part of which is attached. The enries in the date column are as datetime. I am trying to get the id where the ent...
5 days ago | 2 answers | 0
2
answersQuestion
Why am I getting error "Vectors must be the same length" although they are of same length?
I am trying to plot a X,Y graph. I am getting an error "Vectors must be the same length", although I see in the workspace that t...
23 days ago | 2 answers | 0
2
answersQuestion
How to remove multiple outlier data in a rectangular maze?
I have this rodent x,y coordinates as described in the attached picture. There are some outliers in the data, I need to remove...
26 days ago | 1 answer | 0
1
answerQuestion
How to get NaN if the data is not in proper input format or missing?
I am running a function over each table rows. It is a big table and some of the entries are 'NaN' (class: 'double') or 'none' (c...
1 month ago | 1 answer | 0
1
answerHow to run MATLAB function on each row of database?
The problem has been solved. I used a for loop for this. I imported the database as a table 'all_data'. loadfile = load('all_da...
1 month ago | 0
| accepted
Question
How to run MATLAB function on each row of database?
I have wrote a MATALAB function to get an output. I import the PostgreSQL database to MATLAB workspace and then work from there....
2 months ago | 1 answer | 0
1
answerQuestion
How to append values to an array in for loop?
rotation_time_by_direction = []; for i = 1:10:length(direction_table.rodent_RecordingTime)-10 direction_change = ones(1,10...
2 months ago | 1 answer | 0
1
answerQuestion
How to detect rotation in a trajectory?
I have to write an algorithm to detect rotation in the trajectory. Basically, I have to detect the red zone in the trajectory. C...
2 months ago | 2 answers | 0
2
answersHow to convert PgArray to Matlab array?
This piece of code will convert PGArray data to double all_coordinatetimes = cell(length(data_on_date.coordinatetimes),1); for...
2 months ago | 0
| accepted
Question
How to publish as pdf from command tab
I have a function which I am running from command window as follows. [logical_out, run_time, reaction_time] = reaction_time_fun...
2 months ago | 2 answers | 0
2
answersQuestion
How to get nan as output if the function output argument is not supported?
I have written a function with three outputs. function [logical_out, run_time, reaction_time] = reaction_time_function3(~,~,~)...
3 months ago | 2 answers | 0
2
answersQuestion
How to stop running the code for conditional logical output?
I am writing a function with multiple outputs. The first one being a logical output. I do not need further outputs if logical ou...
3 months ago | 1 answer | 0
1
answerQuestion
How to concatenate table elements?
I am trying to concatenate the table elements of which each of them are double array. How can I do it effectively? I have attach...
4 months ago | 1 answer | 0
1
answerHow to extract table data based on column values?
Thanks everyone for your comments. The problem is fixed now. I used the following code to get around. test_data.date = datetime...
4 months ago | 0
Question
How to extract table data based on column values?
I have a table, part of which is displayed. I have attached the table in the question. The entries of the tables are 1*1 cell ar...
4 months ago | 3 answers | 0
3
answersQuestion
How to covert all table entries to non-cell?
I have a table where all the entries are as 1*1 cell array. Here is part of table attached. test_data.date(1) ans = ...
4 months ago | 1 answer | 0
1
answerQuestion
How to convert PgArray to Matlab array?
I have written a SQL query to import a table into MATLAB. There is 2 two PgArrays ('org.postgresql.jdbc.PgArray') in the workspa...
4 months ago | 1 answer | 0
1
answerQuestion
How to use the output of a nested function in parent function?
I trying to make a long function readable. I was planning to write nested function inside the parent function. How can I use the...
4 months ago | 1 answer | 0
1
answerQuestion
Importing csv files properly
I am trying to import a csv file which contains 'comma'(,) inside 'quotation' marks(" ") in some cells. Here is one example. ...
12 months ago | 2 answers | 0
2
answersSolved
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...
12 months ago
Solved
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...
12 months ago
Solved
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:...
12 months ago