解決済み


List the Moran numbers
The quotient of a Moran number and its digit sum is prime. For example, 117 and 481 are Moran numbers because 117/(1+1+7) is 13 ...

約1年 前

回答済み
Cody - "server not available" when submitting solution on prime numbers question
Currently, I can generate the same error if I submit an infinite while loop. This does suggest the error might be related to lon...

約1年 前 | 1

| 採用済み

回答済み
Is there an error in the subplot function in 2025a version
This behavior is not intentional. I'd suggest reporting this here: https://www.mathworks.com/support/contact_us.html

約1年 前 | 0

回答済み
How to Resize images stored in matlab.io.datastore.ImageDatastore to [224 224 3]
If I understand the issue correctly, I believe you have a few options. 1. Modify the size of the imageInputLayer in your code t...

約1年 前 | 0

回答済み
How to solve: Input datastore returned more than one observation per row for network input 2.
The issue is that trainNetwork expects the feature input to be a numfeatures x 1 cell array. You are passing in a 1 x numfeature...

1年以上 前 | 0

回答済み
Unable to request a trial license for MATLAB Web App Server
MathWorks is currently working on an issue that has affected segments of our online systems. Some of our online services are no...

1年以上 前 | 0

回答済み
Adding Drop Down Control
You can only add controls to a live script. Place it where you would define the waveform variable (here, x1 or x2). Assign the r...

1年以上 前 | 1

| 採用済み

回答済み
Help Changing Class/Type In A Table
The best solution would be to fix how your data is imported. Then you don't hvae to convert it. You could use convertvars, or j...

1年以上 前 | 0

回答済み
Where is this menu when debugging a program with matlab2024b and making the program run to the cursor position matlab2024b调试程序的时候让程序运行到光标处这个菜单在哪里
I believe this is now called 'Run to Here'. It is accessed by rt clicking on the line number and selecting the otpion in the men...

1年以上 前 | 2

回答済み
How to plot function x(2)=-1/2*x(1)+t?
Did you mean to assign the result of -1/2*x(1)+t; to the second column of x? x(:,2)=-1/2*x(1)+t; If so, then the code runs at ...

1年以上 前 | 1

| 採用済み

回答済み
Inserting additional data in an already created table
The issue is that char arrays must be padded so that they all have the same length. The value you are assigning does not have th...

1年以上 前 | 0

| 採用済み

回答済み
[Image Alignment] Align two images taken under different zooming and lighting conditions
I used the Registration Estimator App, which produced the following resutls. img1 = imread('img1.jpg'); img2 = imread('img2.jp...

1年以上 前 | 1

| 採用済み

回答済み
How put different colors in different range of values in colorbar?
You need to define a colormap with the number of unique colors you want, and then specify the colorbar ticks. We don't have the...

1年以上 前 | 0

| 採用済み

回答済み
Getting all max, min values of a function as a set of coordinate points
I would use findpeaks syms x y real y=abs(x^3-9*x); [X,Y] = fplot(y, [-5 5]); [pk, loc] = findpeaks(Y,X); [pkN, locN] = fi...

1年以上 前 | 0

回答済み
Spectral Analysis Techniques Course _ Issue plotting a window created with Window Designer in MATLAB
There seems to be a bug with this task. Please report this directly to MathWorks here: https://www.mathworks.com/support/contact...

1年以上 前 | 2

| 採用済み

回答済み
How to set variable names using Readtable with hierarchical categories (Excel file with merged cells / multiple header rows)
There may be a better way, but I would do this in 2 steps. First, read the headers and create variable names, then read the data...

1年以上 前 | 0

回答済み
How to set black color for zero (or nan) values in surf and contourf plots?
First, the autumn colormap does not contain black, so you will need to do some coding for this to happen. Additionally, nan val...

1年以上 前 | 2

回答済み
logarithmic binning of "x" values
I'm not sure the end result is much simpler, but the function that comes to mind is discretize. You'd still need to define your ...

1年以上 前 | 1

| 採用済み

回答済み
Navigate to your MATLAB desktop and click the Apps tab from the MATLAB Toolstrip. Under Simscape, click the Battery Builder Icon.
Estas buscando en el Apps tab de MATLAB? No se encuentra Battery Bulider en el Apps tab de Simulink. Esta instalado Simscape ...

1年以上 前 | 0

回答済み
Is mlcpostinstall.exe a valid matlab file?
This is the same name used for MATLAB Drive Connector. What looks odd to me is the version date in the folder path.The current d...

1年以上 前 | 0

| 採用済み

回答済み
Help Using Variable In Workspace in For Loop
Your for loop has been defined inside a function. Functions have their own workspace. You need to either pass the variable into ...

1年以上 前 | 0

| 採用済み

回答済み
Varying two variables in a for loop for one output
I would remove the for loop and use meshgrid instead. m_water_range = linspace(5,40,45); N_range = linspace(5,50,45); [m...

1年以上 前 | 0

| 採用済み

回答済み
undocking command window in new desktop
It looks like only the Editor can be undocked in the beta version of the new desktop in R2024b.

1年以上 前 | 0

| 採用済み

回答済み
Progress seems to be stuck at a certain percentage in the MATLAB Simulink course
Please contact MathWorks directly: https://www.mathworks.com/support/contact_us.html

1年以上 前 | 0

回答済み
How to find correct "feature" name for parallel computing toolbox?
The easiest way for me is to use the toolbox, then run license('inuse') Starting parallel pool (parpool) using the 'Processes' ...

1年以上 前 | 4

回答済み
How do I determine if a column header exists in a table?
I would access the table varaible names and check if 'x' is a member or not. T = readtable('patients.xls') varNm = T.Propertie...

1年以上 前 | 0

回答済み
exporting-to-excel-spreadsheets
You will need to load each file into MATLAB in order to process the data. There are various techniques depending on how your dat...

1年以上 前 | 0

| 採用済み

回答済み
time series graph representation of EEG signals
No way of knowing without seeing the code used to create the plots. However, the images appear to be using the default colors, s...

1年以上 前 | 0

回答済み
Table resorting after deleting selected rows from the sorted Table
You haven't shared the code you are using to complete your tasks. That will allow us to say why it is happening. However, here...

1年以上 前 | 1

回答済み
How do I fix the error displayed on the code below
Your variable K_global does not have as many rows as you expected. Specifically, it only has 9, so we have to assume that your i...

1年以上 前 | 0

さらに読み込む