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

oltre 9 anni fa | 0

| accettato

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

oltre 9 anni fa | 2

| accettato

Problema


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

oltre 9 anni fa | 1 | 14 risolutori

Problema


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

oltre 9 anni fa | 1 | 27 risolutori

Problema


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

oltre 9 anni fa | 2 | 85 risolutori

Problema


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

oltre 9 anni fa | 2 | 16 risolutori

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

oltre 9 anni fa | 1

| accettato

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

oltre 9 anni fa | 0

| accettato

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

oltre 9 anni fa | 0

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

oltre 9 anni fa | 1

| accettato

Inviato


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

oltre 9 anni fa | 1 download |

5.0 / 5

Risolto


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

oltre 9 anni fa

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

oltre 9 anni fa | 0

| accettato

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

oltre 9 anni fa | 1

| accettato

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

oltre 9 anni fa | 0

Problema


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

oltre 9 anni fa | 1 | 27 risolutori

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

oltre 9 anni fa | 0

| accettato

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

oltre 9 anni fa | 0

| accettato

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

oltre 9 anni fa | 0

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

oltre 9 anni fa | 0

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

oltre 9 anni fa | 1

| accettato

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

oltre 9 anni fa | 0

Inviato


dateunix
Class for time stamps in the UNIX format

oltre 9 anni fa | 1 download |

5.0 / 5

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

oltre 9 anni fa | 0

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

oltre 9 anni fa | 0

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

oltre 9 anni fa | 0

Domanda


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

oltre 9 anni fa | 1 risposta | 0

1

risposta

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

oltre 9 anni fa | 1

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

oltre 9 anni fa | 1

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

oltre 9 anni fa | 0

| accettato

Carica altro