Respondida
How can I show the legend to all bars?
Your bar() command specifies "stacked" but since your data only defines one level per bar, "stacked" should be removed. This d...

más de 3 años hace | 0

Respondida
AppDesigner / GUIDE: generate unknown number of new GUI elements as a function
Your quesiton specifies AppDesigner and GUIDE but don't use GUIDE since it will be removed in a future release. Yes, you can pr...

más de 3 años hace | 1

| aceptada

Respondida
Sorting of column 'folder' present in 'struct'
Sounds like you want natural order sorting. There are some File Exchange submissions that do this (example). But if the forma...

más de 3 años hace | 0

| aceptada

Respondida
how to take pictures from webcam connected from phone on matlab
Use exportgraphics to capture the image within your axes.

más de 3 años hace | 0

Respondida
Save a Table as a .csv in a Specified Folder
The accepted answer in the question you followed uses fullfile to construct the file path. That's much safer than constructing t...

más de 3 años hace | 1

| aceptada

Respondida
Would you use Matlab Central in a job search?
I did.

más de 3 años hace | 2

Respondida
Organizing 2D matrices of unequal column length into single 3D array
Use padarray to pad your matricies to a standard size. Then you can concatenate them using cat.

casi 4 años hace | 1

| aceptada

Respondida
App Designer data to mat file
If you are saving the data from with an app callback function, then you just need to use save to save the data to a mat file. ...

casi 4 años hace | 0

| aceptada

Respondida
Save figures created on Matlab within a folder
creation_new_folder = mkdir(newfolder); --- "newfolder" is the path to your new folder. "creation_new_folder" is the status of...

casi 4 años hace | 0

Respondida
How to use colormap/colorbar for plots
It sounds like you're looking for scatter(x,y,sz,c) x = [0.5:2:18] ; y = [30:10:100]; [a,b] = meshgrid(x,y); c = a(:)+b(:)...

casi 4 años hace | 0

Respondida
How to plot a polar plot with theta limited to 180 degrees on both ways
Set the ThetaLim and ThetaZeroLocation properties of polaraxes. See polaraxes properties for more info. If the negative the...

casi 4 años hace | 0

Respondida
Shift lables for x and y axis on a graph
Your best bet is to specify the x and y values in pcolor so you don't have to alter the ticks in the first place. pcolor(X,Y,...

casi 4 años hace | 0

Respondida
Passing objects from app designer to the workspace
The best way to access the object created by an app is to store the handle to the object as a public property of the app and to ...

casi 4 años hace | 0

Respondida
convert strings of characters to bitstring
Looking for dec2bin? charvec = 'Example: converting char vector to binary.'; bin = dec2bin(charvec)

casi 4 años hace | 0

| aceptada

Discussion


New in MATLAB R2022b: GridSizeChangedFcn in TiledChartLayout
New in R2022b: GridSizeChangedFcn tiledlayout() creates a TiledChartLayout object that defines a gridded layout of axes wit...

casi 4 años hace | 7

Respondida
Convert datetime to string
Use string after formatting your datetime. dt = datetime('now','TimeZone','local','Format','d-MMM-y HH:mm:ss') dtstr = string...

casi 4 años hace | 3

| aceptada

Respondida
How to select rows from an array?
See this page of the doc to learn about array indexing. https://www.mathworks.com/help/matlab/math/array-indexing.html Hint: ...

casi 4 años hace | 0

Respondida
What velue to use for "smooth3(A, 'gaussian', v)?
Good question @John. The syntax smooth3(A,'gaussian',V) passes the data A through a gaussian lowpass filter with a default st...

casi 4 años hace | 0

| aceptada

Respondida
how to identify the mistakes in loop in the given following code?
for i=1:length(q) n=sqrt((D.*zr.*m+s+c.*g0+(A.*((q(i).*h2)/2))))/(q(i).*(((hr+cL.*k).*((D.*q(i))/(m.*p)))+((h1.*q(i)).*((1/...

casi 4 años hace | 0

Respondida
Save uitable in Pdf
To save an image of the uitable to a pdf file, use exportgraphics. The second argument, filename, will be a path to your pdf do...

casi 4 años hace | 1

| aceptada

Respondida
Histogram or heatmap with self-defined values.
You have (x,y) coordinates and my interpretation is that you'd like to use color or another property to represent a third value ...

casi 4 años hace | 1

| aceptada

Respondida
Drawpolygon not working with geoaxes
This is supported in the latest release, MATLAB R2022b. The example below produced the results you described when run in R2022...

casi 4 años hace | 0

| aceptada

Respondida
topoplot function is undefined
topoplot is not a function provided by MATLAB (r2022b). A google search for "matlab topoplot" shows several 3rd party functions...

casi 4 años hace | 0

Respondida
Plot vector in the points of a solid and "animation" (variation) in the time of them
To add rows of data to a datatip, see this demo that uses the DataTipTemplate https://www.mathworks.com/matlabcentral/answers/5...

casi 4 años hace | 0

Respondida
Text inside curve like clabel
> is there a way of writing a text inside a closed curve (e.g. an ellipse) similarly to what would be done with clabel? In shor...

casi 4 años hace | 0

Discussion


New in MATLAB R2022b: determine if a vector is uniformly spaced
Uniform spacing and the problem of round-off error The vector [3 4 5 6 7 8 9] is uniformly spaced with a step size of 1. ...

casi 4 años hace | 6

Respondida
Hello Guys ,I need a help please solve my problem.
Apparently you're indexing an empty array containing 0 elements but you're asking for a value at a non-zero index. That's about...

casi 4 años hace | 0

Respondida
Scanning for floats in different formats
The second data set uses a comma delimiter and you can ignore the top two lines by specifying the HeaderLine property. I've tes...

casi 4 años hace | 1

| aceptada

Respondida
How can I move legend in app designer?
The legend isn't draggable in your release (R2019b) but it is draggable starting in R2021a.

casi 4 años hace | 1

Respondida
Ploting heatmaps in function of time
This demo produces a heatmap with random data and a slider that controls which slice of the 3rd dimension of data to plot. De...

casi 4 años hace | 2

| aceptada

Cargar más