Answered
prctile function and percentile function in excel
The differences you are seeing is because they are using different algorithms. There are many different ways to calculate percen...

2 years ago | 1

Answered
Ejercicios de electrónica de potencia
I would start here: Power Electronics Simulation Onramp

2 years ago | 1

Answered
unexpected behaviour of SliceViewer ScaleFactors
While perhaps unexpected, this is consitent with how the documentation describes anisotropic volumes are displayed. https://ww...

2 years ago | 0

Answered
is optimtool function working in the lastest Matlab 2023a? Kindly provide me updated code.
The Optimization App (optimtool) has been removed (see R2021a release notes here). It has been replaced by the Optimize Live Ed...

2 years ago | 2

| accepted

Answered
Can Matlab draw the figure of a truss or frame by scanning image from notebook?
No, MATLAB does not have the ability to scan an external image and recreate it. If you can save your truss or frame as an stl f...

2 years ago | 1

| accepted

Answered
Particle Detection In script but not in App Designer Function
Assuming your app is displaying the image in axes in the app canvas and not in a separate figure window, then I think the issue ...

2 years ago | 0

| accepted

Answered
Comparing each row of a table to the same row of a different table. Then store the highest maximum temperature, lowest minimum temperature from that row.
I would use groupsummary. Tbl1 = readtable("temp_summary.05.01_1981.txt","ConsecutiveDelimitersRule","join"); Tbl1.Day = datet...

2 years ago | 0

| accepted

Answered
how to install deep learning toolbox in MATLAB R2018b?
Toolboxes created by Mathworks are version specific. You can install the R2018b version of the Deep Learning Toolbox using the A...

2 years ago | 0

| accepted

Answered
Can I use MATLAB academic to publish papers in professional journals?
If you would like a definitive answer, please contact sales: https://www.mathworks.com/company/aboutus/contact_us/contact_sales....

2 years ago | 0

Answered
Need to write code for closing already open excel file in Matlab version 2017a.
There are some examples that use slightly different syntax here: https://www.mathworks.com/matlabcentral/answers/166071-excel-fi...

2 years ago | 0

Answered
Error: The logical indices contain a true value outside of the array bounds.
This error occurs when your logical index has more elements than the array you are indexing with it. ind1 = logical([0 1 1 0]);...

2 years ago | 0

Answered
I need to close excel file before importing data
Suggestions and suspected bugs can be reported here: https://www.mathworks.com/support/contact_us.html

2 years ago | 0

Answered
[absolute beginner] What is the purpose of strcat when used in this way?
The explanation from the documention does a good job summarizing its function as "Concatenate strings horizontally". So it takes...

2 years ago | 0

Answered
Horizontal line for each category in a swarmchart with categorical x axis
Here's one approach. I tried to simplify it, If you ignore the bit about setting up the colors, you may agree. load T.mat % ...

2 years ago | 0

Answered
Geoid Data for Aerospace Toolbox download does not download required mat files
Please report this here: https://www.mathworks.com/support/contact_us.html

2 years ago | 0

| accepted

Answered
Index exceeds the number of array elements
Your code is using the sorted values of y2 to index into y2. However, y2 only has 8 elements, but your values of y2 go up to 15....

2 years ago | 0

Answered
Cell array test in MATLAB Grader
As Dyuman Joshi pointed out, it depends what you are storing in your cell array. If you store any variables that require a MATLA...

2 years ago | 1

Answered
Signal Labeler Drop Down Bug
Please report this here: https://www.mathworks.com/support/contact_us.html

2 years ago | 0

| accepted

Answered
creating time series on specific coordinates rainfall using .nc
Look at the size info to figure out the dimensions of pr First dimension is longitude Second dimension is latitute Third dime...

2 years ago | 0

Answered
Can MatLab run on a Thinkpad t530?
You can find the system requirments here: https://www.mathworks.com/support/requirements/matlab-system-requirements.html

2 years ago | 0

Answered
Display Image Result from a code in GUI
If you are using app designer and displaying the image using imshow, you need to tell MATLAB which axes to plot to. You do this ...

2 years ago | 1

| accepted

Answered
Create a 3D array by month and other by seasons from a 3D array in days
A = [362 241 10227]; B = A; B(3) = B(3)/365.25*12 C = B; C(3) = C(3)/4

2 years ago | 0

| accepted

Answered
Need help on how to CREATE a text file in matlab?
It really depends on the data you are trying to write to the file. See this page: https://www.mathworks.com/help/matlab/import_e...

2 years ago | 0

Answered
Type Editor. how it works
There is a documentation page: https://www.mathworks.com/help/simulink/slref/typeeditor.html From their, use the menu bar to fi...

2 years ago | 0

Answered
How to average 'data' column of [Latitude, Longitude, Data] data from multiple file and save the average of 'data' column with using the same [Latitude, Longitude]
Is the firle format the same in all your files? If so, I would use a filedatastore to load all the data into a single table, and...

2 years ago | 1

Answered
Plotting 4 D Data
You can use X, Y and Z axes to visualize data up to 3 dimensions. To visualize higher dimensions, you must incorporate something...

2 years ago | 1

Answered
Can't get simulink Onramp Certificate
It seems like you already found this answer: https://www.mathworks.com/matlabcentral/answers/1573013-can-t-get-simulink-onramp-c...

2 years ago | 0

Answered
How can I solve this question about Global Optimization Toolbox?
It looks like you have not installed the Global Optimization Toolbox. If that toolbox is included in your license, you can ins...

2 years ago | 0

Answered
how i scale up my graph
Do you mean you want to control the number of bins? If so, use either of these syntaxes histogram(X,nbins) histogram(X,edges)

2 years ago | 0

Answered
checking for colon operator in MATLAB grader
MATLAB Grader does not have a built-in way to check for the use of operators (see this related question). You might try combini...

2 years ago | 0

Load more