Answered
How to replace variables in symbolic function with values from a vector
You probably want the function subs()

9 years ago | 0

| accepted

Answered
zoom-in into figure, doesn't change Y axes
Try setting the YTickLabelMode or the YTickMode to 'auto' or 'manual'. e. g. ax = gca; ax.YTickLabelMode = 'auto'; ...

9 years ago | 2

| accepted

Problem


how to concatenate matrices
What is the name of the function used to create a matrix C form two matrices A and B, using the syntax: C = [A B]; Outpu...

9 years ago | 1 | 14 solvers

Problem


time of day
Calculate the time of day in days, hours, minutes or seconds passed since the beginning of the day, depending on the unit. The u...

9 years ago | 1 | 27 solvers

Problem


microseconds passed today
Calculate the amount of microseconds (as a string) passed for a given date string

9 years ago | 2 | 85 solvers

Problem


nanoseconds passed today
Calculate the amount of nanoseconds passed in the current day of a certain date string.

9 years ago | 2 | 16 solvers

Answered
Change the axis label unit length
You can set the XTick and XTickLabel properties. ax = gca; ax.XTick = [...]; %vector containing ticks you would like (sp...

9 years ago | 1

| accepted

Answered
Could someone please point out the error in my code?
If you want to find out if it is correct, look at the units. What you want as a result is currency, let's say £. rate = units...

9 years ago | 0

| accepted

Answered
How do you determine which numbers in a vector are factors of 144 by indexing through it using loops?
tf = false(size(vector)); for i = 1:length(vector) if mod(144,vector(i)) == 0 tf(i) = true; end end...

9 years ago | 0

Answered
Maximum of my own function
syms x f1 = 5*x + 2; F1 = int(f1); % integrate x_ext = solve(f1 == 0); % solve for x = 0 % limits for x --> -inf &...

9 years ago | 1

| accepted

Submitted


norminvlim
For generating normal distributions limited to an upper and lower boundary

9 years ago | 1 download |

5.0 / 5

Solved


Get Cody's screen size
Return an object that helps this problem's test suite return Cody's screen size.

9 years ago

Answered
character array vs cell array empty cells
That's 3 questions ;) # I'm not sure I understand what you mean. If I create a cell array, it displays like this in the comma...

9 years ago | 0

| accepted

Answered
place matrix in array part 2
Well if y = [ones(3,1); -ones(3,1)] % or y = [1; 1; 1; -1; -1; -1]; and x is take...

9 years ago | 1

| accepted

Answered
How to remove for loops in this code?
If lsqcurvefit() can't be run on matrices, you may not be able to reduce the loop nesting. But if it is a lot of data, you can ...

9 years ago | 0

Problem


A little bit of luck needed
This one may require a little bit of guess work, but it is possible. Hints: - The same solution might fail the tests once and ...

9 years ago | 1 | 27 solvers

Answered
Copying Profile results into Word/Excel
Did you use? p = profile(...) If so, you could use xlswrite(). Otherwise, try saving the HTML results using profsa...

9 years ago | 0

| accepted

Answered
Read a .mat file and write .csv without opening matlab
You won't be able to run a Matlab-file without opening Matlab - unless you use another program that is compatible. However, y...

9 years ago | 0

| accepted

Answered
how can I store for loop result in different row(for each i) and column(for each j given i)?
You could do it like this: stock = nan(17,5676); rCT = 0; %row counter cCT = 0; %column counter maxC = 0; %for ...

9 years ago | 0

Answered
unsupported MATLAB function call for matlab function 'datastore'
You can look into the code edit datastore Maybe it's possible to create a function that does the same without using unsu...

9 years ago | 0

Answered
can i uninstall matlab 2016a after installing matlab 2016b?
Yes, you can uninstall it. It should also have copied over your search path and preferences. But just in case, I would recommend...

9 years ago | 1

| accepted

Answered
I need to create a tab group in a pre-existing GUI
<https://de.mathworks.com/matlabcentral/fileexchange/54705-tabmanager-create-tab-panels--uitabgroup--from-a-guide-gui This FileE...

9 years ago | 0

Submitted


dateunix
Class for time stamps in the UNIX format

9 years ago | 1 download |

5.0 / 5

Answered
How do seperate a string in different strings while not creating new strings for variables
Use inds1 = strfind(A.input,']'); inds2 = strfind(A.input,'['); to get the locations of the variables.

9 years ago | 0

Answered
Standalone application giving error (function dataset) when Matlab is working fine
Here's a few things you can do to debug: # see if there is only one function called dataset in your search path and make sure...

9 years ago | 0

Answered
Display TODO/FIXME report in command window
I got it to work <http://stackoverflow.com/a/40022882/5002159 by modifying the builtin DOFIXRPT function>.

9 years ago | 0

Question


Display TODO/FIXME report in command window
Hi everyone. Using the command checkcode('function.m') you can run the code analyzer on an m-file and output the repo...

9 years ago | 1 answer | 0

1

answer

Answered
Minimum cell of a matrix
You need to end every loop and if statement with an end keyword Min=inf; for Row =1:size(B,1) for Col==1:size(B,2)...

9 years ago | 1

Answered
I am having trouble getting the code to display how many days AND which days of the month things are occurring on (lines 29 and 36 in the script image). See attached images.
In your first problem (Anchorage temp above NYC temp), you print x. But x is your looping index. So it always ends up as length(...

9 years ago | 1

Answered
read in text file and place each word of the sentence it's own separate cell
If you already have a cell array C with the separated sentences: D = cell(1, length(C)); for i = 1:length(C) c = ...

9 years ago | 0

| accepted

Load more