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

mehr als 9 Jahre vor | 0

| akzeptiert

Beantwortet
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'; ...

mehr als 9 Jahre vor | 2

| akzeptiert

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

mehr als 9 Jahre vor | 1 | 14 Lösungsvorschläge

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

mehr als 9 Jahre vor | 1 | 27 Lösungsvorschläge

Problem


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

mehr als 9 Jahre vor | 2 | 85 Lösungsvorschläge

Problem


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

mehr als 9 Jahre vor | 2 | 16 Lösungsvorschläge

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

mehr als 9 Jahre vor | 1

| akzeptiert

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

mehr als 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 0

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

mehr als 9 Jahre vor | 1

| akzeptiert

Gesendet


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

mehr als 9 Jahre vor | 1 Download |

5.0 / 5

Gelöst


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

mehr als 9 Jahre vor

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

mehr als 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 1

| akzeptiert

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

mehr als 9 Jahre vor | 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 ...

mehr als 9 Jahre vor | 1 | 27 Lösungsvorschläge

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

mehr als 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 0

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

mehr als 9 Jahre vor | 0

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

mehr als 9 Jahre vor | 1

| akzeptiert

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

mehr als 9 Jahre vor | 0

Gesendet


dateunix
Class for time stamps in the UNIX format

mehr als 9 Jahre vor | 1 Download |

5.0 / 5

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

mehr als 9 Jahre vor | 0

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

mehr als 9 Jahre vor | 0

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

mehr als 9 Jahre vor | 0

Frage


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

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

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

mehr als 9 Jahre vor | 1

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

mehr als 9 Jahre vor | 1

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

mehr als 9 Jahre vor | 0

| akzeptiert

Mehr laden