回答済み
How to convert dates into Julian dates?
Assuming your dates are currently stored as a numeric array, then dates = [20230409 20230414 20230504 20230514 2023...

10ヶ月 前 | 0

| 採用済み

回答済み
The Tsunami model has need to fixed this problem
Disclaimer: I am not an expert in this! I was not able to track down the exact (Goring & Reichlan) reference from the documenta...

11ヶ月 前 | 0

質問


Dictionary with key-value pair of string ---> string array?
Using the older containers.Map object, I can map a string to a string array: keySet = ["Jan";"Feb";"Mar"]; valueSet = {["New Y...

11ヶ月 前 | 1 件の回答 | 0

1

回答

回答済み
why the plot are all zeros?
If you set a breakpoint at the code % Update number of processing tasks on neighbor vehicle numVehicleTasks(j) = numVehicleTas...

11ヶ月 前 | 0

回答済み
Moving the position of the colorbar label
It is possible to do so. I found out how from this answer. figure surf(1e7*peaks) c = colorbar; drawnow() c.Ruler.Seconda...

11ヶ月 前 | 1

| 採用済み

回答済み
Minimize the sum of squared errors between the experimental and predicted data in order to estimate two optimum parameters
If you have the Statistics and Machine Learning Toolbox, you can use fitnlm to fit this function. Unless I'm making a mistake i...

11ヶ月 前 | 0

回答済み
for loop jump an element of an array
You should not use strict equality to compare floating point numbers. Instead, check equality with a small tolerance, e.g. if ...

11ヶ月 前 | 0

回答済み
how to build a magic matrix manually of even n*n matrix?
The method that MATLAB uses to build magic squares is evident if you enter type magic at the command line.

11ヶ月 前 | 0

回答済み
How to place the x axis pointing downward and the y axis horizontally?
I'm not 100% certain I understand, but here are steps toward what I think you want. Use some or all of them. First version, I a...

11ヶ月 前 | 0

回答済み
how to build a magic matrix manually of even n*n matrix?
Yours is an algorithm question, not a MATLAB question. You can find an algorithm for both singly-even and doubly-even magic squ...

11ヶ月 前 | 0

回答済み
how to fill circle markers with crosses?
I'm guessing it's a bit sloppy for your purposes, but one can overstrike plots with two markers: rng(31) x = rand(7,1); y = r...

11ヶ月 前 | 2

| 採用済み

回答済み
why do i get 'off', 'Octave:abbreviated-property-match' error warning in eeglab?
The fact that you reached line 202 presumably means you are in an Octave environment, not a MATLAB environment. (I'm guessing th...

11ヶ月 前 | 0

回答済み
model spec 'polyijk' o=in fitlm does not work as per MATLAB documentation?
I think you are just misinterpreting the Wilkinson notation of the model spec in the output. x1*x2 % note the * for interaction...

11ヶ月 前 | 0

| 採用済み

回答済み
Plotting 3D functions
You used exp as if it were a constant (e) that is raised to a power. Instead, you should have used it as a function. You also u...

11ヶ月 前 | 1

| 採用済み

回答済み
How to calculate center of pressure given a 2d array containing pressure data
If the answers to both of the questions in my comment is "yes", then % Example input pressureArray = [1 2 3; 4 5 6; ...

11ヶ月 前 | 0

| 採用済み

回答済み
Weird question about the editor...
The line you are talking about is referred to as the "right-hand text limit". You can adjust some properties for it under MATLAB...

11ヶ月 前 | 1

| 採用済み

回答済み
Error occurred in fitlm function.
@Walter Roberson surmised correctly, as usual. The fitlm function cannot be used when you have multiple dependent variables. Yo...

12ヶ月 前 | 0

回答済み
how to convert table to cell to acess data?
The syntax rcs=M(:,4) will give a one-column table. The syntax rcs=M{:,4} will give a column of data of the class that is s...

12ヶ月 前 | 0

| 採用済み

回答済み
Solving an array without for loops
Your question is stated abstractly enough that it is difficult to give specific advice (at least for me). I think it is possibl...

12ヶ月 前 | 0

回答済み
Why am I getting the error "Too many output arguments"?
You are confusing MATLAB by using error (a MATLAB function) as a variable name. I changed that variable name to errorVal, and i...

12ヶ月 前 | 1

| 採用済み

回答済み
problem with low infinite number
Because their floating-point representations are not exactly equal. You can see that they are not quite equal: load("matlab_Ed...

12ヶ月 前 | 1

回答済み
Find a weight matrix and bias which performs the following binary classification
Some MATLAB functionality is not included in basic MATLAB, and you need to purchase a separate "toolbox". The hardlim function i...

12ヶ月 前 | 0

回答済み
Extract regexp tokens with regexpPattern
I realize that this is not really an answer to your question, but I just wanted to make sure you are aware that one option is to...

12ヶ月 前 | 0

回答済み
Blurry Plots -- Using Mac
There are so many possibilities here, and you haven't really provided any specific info except that you are on a Macbook (and or...

12ヶ月 前 | 0

回答済み
Showing information on a plot
You should be able to get everything you want, using the following commands: title, xlabel and ylabel for the title and axes la...

12ヶ月 前 | 0

回答済み
How to do uneven 2 way anova
The documentation for anovan has an example for two-way ANOVA for unbalanced design.

12ヶ月 前 | 0

回答済み
Create confusion matrix from LDA model
The ClassificationDiscrimant class has a predict function. You can input the predicted and actual labels into the confusionchart...

12ヶ月 前 | 0

| 採用済み

回答済み
Statistical summaries for each categories in table display
This is the Variable Editor view in the MATLAB "New Desktop", which is in beta development. You can try it by clicking on the "...

約1年 前 | 1

| 採用済み

質問


Figures from code executed on Answers are tiny
When I run code here at Answers, generated figures are now much, much smaller than they used to be. (I can't remember how long t...

約1年 前 | 1 件の回答 | 0

1

回答

回答済み
Scattered Interpolant in matlab
No, according to the documentation for scatteredInterpolant, the available extrapolation methods are 'nearest', 'linear', or 'n...

約1年 前 | 0

さらに読み込む