Respondida
Best practice: should a function return a row vector or a column vector
Just my opinion here. I think it is entirely dependent on how you intend to use the output. For your (x,y) example, I would us...

casi 3 años hace | 1

Respondida
List of a predefined deep learning layers
I don't know if there is a detailed explanation somewhere of the ResNet-50 network.This is a pretrained network that can be adde...

casi 3 años hace | 1

| aceptada

Respondida
Need help outputting game into interface or graph
Yes, using App Designer. Here's a getting started tutorial: https://www.mathworks.com/help/matlab/creating_guis/create-a-simple-...

casi 3 años hace | 0

Respondida
extracting lat/lon from tif file using matlab
See this answer, which was updated in 2022. https://www.mathworks.com/matlabcentral/answers/8865-geotiffread-getting-latlon-inf...

casi 3 años hace | 1

Respondida
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...

casi 3 años hace | 1

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

casi 3 años hace | 1

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

casi 3 años hace | 0

Respondida
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...

casi 3 años hace | 2

| aceptada

Respondida
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...

casi 3 años hace | 1

| aceptada

Respondida
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 ...

casi 3 años hace | 0

| aceptada

Respondida
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...

casi 3 años hace | 0

| aceptada

Respondida
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...

casi 3 años hace | 0

| aceptada

Respondida
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....

casi 3 años hace | 0

Respondida
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...

casi 3 años hace | 0

Respondida
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]);...

casi 3 años hace | 0

Respondida
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

casi 3 años hace | 0

Respondida
[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...

casi 3 años hace | 0

Respondida
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 % ...

casi 3 años hace | 0

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

casi 3 años hace | 0

| aceptada

Respondida
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....

casi 3 años hace | 0

Respondida
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...

casi 3 años hace | 1

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

casi 3 años hace | 0

| aceptada

Respondida
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...

casi 3 años hace | 0

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

casi 3 años hace | 0

Respondida
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 ...

casi 3 años hace | 1

| aceptada

Respondida
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

casi 3 años hace | 0

| aceptada

Respondida
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...

casi 3 años hace | 0

Respondida
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...

casi 3 años hace | 0

Respondida
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...

casi 3 años hace | 1

Respondida
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...

casi 3 años hace | 1

Cargar más