Answered
Font size of command window is much larger than the one in Editor
You can Zoom in and out in the editor. Try switching to the View tab and use the Zoom In or Zoom Out options to adjust the edito...

2 maanden ago | 0

| accepted

Answered
Indexing array of strings to the full string instead of one letter
In that case, use strings (double quotes) instead of character arrays (single quotes). propnames = ["density", "entropy", "enth...

2 maanden ago | 1

Answered
how can I change worldmap axes grid and label?
Use setm to set the meridian line & label locations ('MLineLocation' and 'MLabelLocaton' properties). Also, you can use gridm ...

2 maanden ago | 0

| accepted

Answered
Oxford Battery degradtion dataset
I would download the data directly from Oxford as a mat-file. Then you can just load the mat file into MATLAB, and have all the ...

2 maanden ago | 0

Answered
Can I use splitapply with two grouping variables and how can it be done in matlab app designer?
Yes, you can use two grouping variables. However, the output is still an Nx1 vector of the unique groups (combination of the gro...

2 maanden ago | 0

Answered
Troubles With Image Resizing
If the Medical Imaging Toolbox is included in your license, I suggest using extractSlice to get the voxel information for your s...

2 maanden ago | 0

| accepted

Answered
Programmatically Disable a Toolbox
Does matlab.addons.disableAddon do what you want?

2 maanden ago | 0

| accepted

Answered
Why does readmatrix return empty matrix if text file contains quotes?
readmatrix is trying to guess what the file format is. However it is doing that, it appears to not handle this specific configua...

2 maanden ago | 1

Answered
Video Labeler change time between frames
I imagine the times come from the video object created to load the video (see here). There isn't a way to change this in the app...

2 maanden ago | 1

| accepted

Answered
Need 2017, 2018 MATLAB PDF Documentation related to MATLAB Communication toolbox and Simulink for Communication
Documentation older that 5 years is not available online. Please contact support: https://www.mathworks.com/support/contact_us.h...

2 maanden ago | 0

Answered
Replace a field with another one in structure arrays
Your structure name is apparently not Data_2. Check your workspace for the correct name. Data_1.Camera1 = []; Data_2.Camera1 =...

2 maanden ago | 0

| accepted

Answered
Display script comment as contents in MATLAB "Script Editor", instead of "Current Folder" script overview
I suggest submitting your suggestion/feedback here: https://www.mathworks.com/support/contact_us.html

2 maanden ago | 0

Answered
what's the different between p.v and v?
See here: https://www.mathworks.com/help/simscape/lang/model-linear-resistor-in-simscape-language.html v = p.v - n.v

2 maanden ago | 0

| accepted

Answered
Add duration object to datetime object to get new datetime object
The results seem correct if you consider the time is being displayed in 12-hr format instead of 24 hour format. A = readtable('...

2 maanden ago | 0

| accepted

Answered
how to create array datetime
You have the correct function, just the wrong syntax. The biggest issue I see with the conversion is that your time appears to b...

2 maanden ago | 0

Answered
d'unité Hounsfield (UH) faux
dicomread loads the raw pixel intensity values. You need to use the RescaleSlope and RescaleIntercept metadata properties to co...

2 maanden ago | 0

| accepted

Answered
How to run selected matlab code?
Press F9 or right click on it and select Evaluate Selection

2 maanden ago | 2

| accepted

Answered
How to plot two graphs with different x axes on the same graph without using tiled layout?
The plot created by the following example appears to export correctly Display Data with Multiple x-Axes and y-Axes x1 = 0:0.1:...

2 maanden ago | 0

| accepted

Answered
How to plot different grouped boxplots in a shared x axis with different dimensions that are inconsistent?
Here's a quick approach cats = {'X', 'Y', 'Z', 'Combined'}; % Data from 1mm a = load ("All-1mm.txt"); b = load ("Origin-1mm....

2 maanden ago | 1

| accepted

Answered
Why Spatial referencing information is missing or not readable directly from ENVI format data?
After hearing from the corresponding internal team, it was discovered that the map info parameter in your headerfile is not form...

3 maanden ago | 0

Answered
Plotting a Multiple Category Line Graph of Longer Vectors
baseline = 885.63; % GRAPH PLOTTING y_values = round(2300*rand(90,23)); [N,M] = size(y_values); % GRAPH PLOTTING colors...

3 maanden ago | 0

| accepted

Answered
Adding Legend of Data Categories
Here's an approach that seemed the most straightforward to me. I've replaced your y_values array with a randomly generated 90x4...

3 maanden ago | 0

| accepted

Answered
This submission seems to have been previously rejected or deleted. Please contact the File Exchange admin if you wish to upload it again.
Contact support: https://www.mathworks.com/support/contact_us.html

3 maanden ago | 0

Answered
How to stop the first plot from overwriting the second plot in app.Panel when using Tiledlayout? "Hold on" does not work.
In App Designer, you must specify which axes to hold on by using the syntax hold(ax,___). Try this hold(ax,'on')

3 maanden ago | 0

| accepted

Answered
Problem with 3D Meshgrid - Not understanding why some planes are 0 which results in my dx becoming 0
To simplify, think of a 3D grid with the following coordinates X location can either be 1, 2, or 3 Y location can either be 6,...

3 maanden ago | 2

Answered
Can i run the matlab A version simulink file in matlab B version?
It depends on what the actual release versions are. Simulink is backwards compatable, so a model from an earlier release should...

3 maanden ago | 1

Answered
I want to plot 2d quiver plot from 3d data but get a syntax error
X_labels and Y_labels are 3D arrays of size 7x7x7 while U and V are 3D arrays of size 1x7x7. Be sure to extract the correspondi...

3 maanden ago | 0

| accepted

Answered
Error using trainNetwork Invalid training data. For cell array input, responses must be an N-by-1 cell array of sequences, where N is the number of sequences. The spatial and
I believe the issue is because the sequence length is not the same in each sequence. There are 2 reasons for this. First, your...

3 maanden ago | 0

| accepted

Answered
What am I missing here? I have included all the parameters into my script but I still get zero as my answer. See script below
All things being equal, your answer will always be zero based on how ode_system is defined if x0 is a vector of zeros. The main...

3 maanden ago | 0

Answered
I can't activate MATLAB R2024a licence.
Contact support. https://www.mathworks.com/support/contact_us.html

3 maanden ago | 0

Load more