Answered
plot stem in vertical position
One method is to create a hgtransform and use that as the parent axes of the stem() call. Then set the Matrix property of the hg...

7 days ago | 0

Answered
submit m files for execution via the command line
If you open MATLAB in no display mode, then you will get a MATLAB session that is effectively all command-line and command windo...

7 days ago | 0

Answered
submit m files for execution via the command line
The official way of doing this is to use MATLAB Production Server; https://www.mathworks.com/products/matlab-production-server.h...

8 days ago | 0

Answered
exporting files to matlab
Go ahead and save the file to MATLAB Drive. Then in MATLAB Online use the folder view on the appropriate directory. Right click ...

8 days ago | 0

Answered
How to fix a code?
You created a vector named t . Then in constructing the anonymous function for ode45 purposes, you used @(t,x) equations(t, ...

8 days ago | 0

Answered
writing a mex statement for outputting values of some variables to the console.
https://www.mathworks.com/help/matlab/apiref/mexprintf.html #include "fintrf.h" integer*4 mexPrintf(message) character*(*) m...

8 days ago | 0

Answered
hi, any tips for mapping 3 nos. of 4x4 matrix (k1, k2, k3) and i need to map it into 8x8 matrix (Kg) and their intersection should add up...
Kg = zeros(8,8); Kg([3 4 1 2], [3 4 1 2]) = K1; Kg([1 2 5 6], [1 2 5 6]) = Kg([1 2 5 6], [1 2 5 6]) + K2; Kg([7 8 1 2], [7 8 ...

8 days ago | 0

| accepted

Answered
zero(s) of a nonlinear implicit function
In particular, I want to find a array of outputs for a given array of inputs. That is not possible using fsolve() -- not unless...

9 days ago | 1

| accepted

Answered
No Code to Analyze Add code with code formatting and then click Analyze.
You could get that error if you were using LiveScript and you accidentally inserted your code using "Insert Text" instead of "Co...

10 days ago | 0

| accepted

Answered
Parallel Worker sends "finished" after less then a second of "running" but has a infinite Loop. I dont want it to stop.
https://www.mathworks.com/help/parallel-computing/parallel.pool.dataqueue.html The side that you create the parallel queue on ...

10 days ago | 0

Answered
Does Polyspace (BugFinder and Code prover) support Ada language?
https://www.mathworks.com/products/polyspace-ada.html Polyspace Products for Ada

10 days ago | 0

Answered
What does rng(seed,''5normal") actually means and what they are controlling while generating the matrices?
According to https://www.mathworks.com/help/matlab/ref/randstream.html#mw_cc34b6ad-c7e6-4943-b21b-7d7310a4dd52 "v5normal" corres...

11 days ago | 0

Answered
Hello. I need to transform a folder of PNG gray pictures to hex files
projectdir = './inputimages'; %directory to look for png files hexfiledir = './hexdir'; %directory to store hex files ...

12 days ago | 0

Answered
Ezyfit: Single vs. Two-Step Fitting Problem
Is there a method or setting within Ezfit to obtain accurate 4-parameter results in a single fitting run (Method A)? No.

12 days ago | 1

| accepted

Answered
Cyclic dependency in OOP
You can use dependent properties, perhaps in conjunction with hidden properties. In the example given, you could have a hidden...

12 days ago | 0

Answered
How to vectorize analytical derivative functions for bvp4c?
In order to calculate analytic derivatives, you need to be using the Symbolic Toolbox. If you use a scalar symbolic formula (an...

12 days ago | 0

Answered
Is it possible to reduce this for loop into one line of code?
Headers(cellfun(@(X)any(ismissing(X),'all'), Headers)) = cellstr("Missing_header_" + find(cellfun(@(X)any(ismissing(X),'all'), H...

12 days ago | 1

Answered
How to Graph with the endpoints excluded from values
r = 2:0.01:10; r(ismember(r, [2, 10])) = []; %cross-check format long g r(1) r(end)

13 days ago | 0

Answered
Help with converting symbolic gradient/Hessian to anonymous function
matlabFunction(grad, 'Vars', {x}) When you pass a cell array as Vars, then each element of the cell array is a group of variabl...

13 days ago | 1

| accepted

Answered
How to implement FIFO in MATLAB with continuous input
Outline: Q = []; while true check whether data is present if data is present new_data = fetch data; ...

14 days ago | 0

Answered
Can I create stackedplot with arrays of different row lengths?
First convert the tables into timetables, which might require converting the dates into datetime objects. Then form the union o...

14 days ago | 0

Answered
how to set matlab command window fonts in -nodesktop -nosplash -nojvm mode?
When running MATLAB in -nodesktop -nosplash -nojvm mode, no graphics command input window or output window is created. Instead, ...

14 days ago | 0

Answered
Directory access failure for some folders Mac Sequoia
System Settings -> Privacy & Security -> Files & Folders -> MATLAB_R2022b, and enable Desktop Folder Note: if some other versio...

15 days ago | 0

| accepted

Answered
Handle warning of "Array is wrong shape or size" when plotting a geopolyshape and setting the ColorData field in MATLAB
https://www.mathworks.com/help/map/ref/map.graphics.chart.primitive.line-properties.html#mw_f88b2538-674c-488f-bc33-da8b68310c74...

15 days ago | 0

Answered
Actualizacion de licencia Matlab
Yes. For approximately 4 years, you can pay for MATLAB licenses retroactively. For example if the license expired May 1, and yo...

15 days ago | 0

Answered
Solve two non linear equations using Newton Raphson method x(1)^2 - 2x(1) - x(2) - 3 = 0 and x(1)^2 + x(2)^2 - 41 = 0
syms x [1 2] f(1,1) = x(1)^2 - 2*x(1) - x(2) - 3; f(2,1) = x(1)^2 + x(2)^2 - 41 sol = vpasolve(f, [x(1), x(2)], [2;3]) subs(...

15 days ago | 0

Answered
How to make a plot with upper x-axis adapted to the scale of the lower x-axis
Sounds like a job for linkaxes

16 days ago | 0

Answered
How to detect missing values in a string cell array
You are applying ismissing() to a cell array. That is the same thing as calling [ismissing(A(1)), ismissing(A(2)), ismissing(A(...

16 days ago | 0

| accepted

Answered
I am trying to graph a function over time, but im struggling to code this.
Two different approaches: g = @(t) 2.4*exp(-t)-2.4*cos(2*t)+4.4*sin(2*t)+10*t*cos(2*t)+72*t*sin(2*t); fplot(g,[0,10]); syms...

18 days ago | 1

| accepted

Answered
How do I fix a "Color data must be an m-by-n-by-3 or m-by-n matrix." error?
Documented: If the file is a TIFF file containing color images that use the CMYK color space, then A is an m-by-n-by-4 array. ...

18 days ago | 0

Load more