回答済み
How to replace variables in symbolic function with values from a vector
You probably want the function subs()

9年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 2

| 採用済み

問題


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年以上 前 | 1 | 14 個のソルバー

問題


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年以上 前 | 1 | 27 個のソルバー

問題


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

9年以上 前 | 2 | 85 個のソルバー

問題


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

9年以上 前 | 2 | 16 個のソルバー

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

| 採用済み

送信済み


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

9年以上 前 | ダウンロード 1 件 |

5.0 / 5

解決済み


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

9年以上 前

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

問題


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年以上 前 | 1 | 27 個のソルバー

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

| 採用済み

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 1

| 採用済み

回答済み
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年以上 前 | 0

送信済み


dateunix
Class for time stamps in the UNIX format

9年以上 前 | ダウンロード 1 件 |

5.0 / 5

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

回答済み
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年以上 前 | 0

質問


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年以上 前 | 1 件の回答 | 0

1

回答

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 1

回答済み
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年以上 前 | 0

| 採用済み

さらに読み込む