Answered
how can i open .out extension file in matlab?
".out" is not a standardized file extension. ".out" is used by many different programs, and contains anything from text printout...

23 days ago | 0

Answered
Problem solving system of nonlinear equations with fsolve trying to change inputs
x = fsolve(fun,x0,F,rho,options) This instructs fsolve to process fun as a function handle that expects a single input, ...

23 days ago | 0

Answered
How to import multiple .mat files into the same workspace
projectdir = '.'; %path to .mat files dinfo = dir( fullfile(projectdir, '*.mat') ); data = struct(); for K = 1 : length(dinf...

24 days ago | 1

Answered
Can't install MATLAB Conector (online MATLAB) although downloaded from mathworks site
The link to download the MacOS version of Connector is https://www.mathworks.com/MathWorksServiceHost/maci64/installer.dmg.zip ....

24 days ago | 0

Answered
I can't download Matlab R2022a release or earlier release
There are two possibilities: * you have a license controlled by an institution and that institution has disabled downloading ...

24 days ago | 0

Answered
why i can't get same plot when i change Real to Im?
You are plotting in Maple. MATLAB returns correct results. syms x t map(x,t) = 0.2e1 * (0.4e1 * exp((-8 * t + 2 * x)) + 0.9e1 ...

24 days ago | 1

Answered
How do you access Powershell in MATLAB interactively
Powershell implies that you are using Windows. In that case you can use System.Diagnostics.Process to configure input and output...

24 days ago | 0

Answered
MATLAB Code Not Plotting Solution and Stuck on "Busy"
Your code runs, but takes a while, as you are doing 1 x 800 x 800 x 2 determinents. Eventually though the surf() fails. y and t...

24 days ago | 0

| accepted

Answered
algorithm of envelope function 'peak' option
The local maxima are found using findpeaks() with the 'MinPeakDistance' option spline interpolation is done using interp1() wit...

24 days ago | 0

| accepted

Answered
Why does Matlab recommend keeping the Documentation on the Web?
With my ethernet connection (nominally 1 gigabit, achievable throughput 875 megabits), "doc" renders for me in less than 2 secon...

24 days ago | 0

Answered
what is 2+2
2 + 2 double(2) + double(2) single(2) + single(2) sym(2) + sym(2) uint8(2) + uint8(2) int8(2) + int8(2) uint16(2) + uint16...

24 days ago | 1

Answered
Initial condition from output of another Integrator block?
Your use of a 1/s block instead of a 1/z block shows that you are using Continuous time. As such, all of the blocks theoreticall...

25 days ago | 0

Answered
Adding two columns together to create a new column of data
If you are using a table, T, then T.Z = T.R + T.L;

25 days ago | 0

Answered
Color input to comm.ConstellationDiagram object
You can use a single scatter() call, and record the graphics object that results. Then on subsequent loop iterations newX = [SC...

25 days ago | 1

| accepted

Answered
fftshift implementation in Simulink
Fork the fft output. Use https://www.mathworks.com/help/dsp/ref/variableselector.html variable selector block on each of the br...

25 days ago | 0

| accepted

Answered
How to turn off autosave in matlab online 2021a
If you do not want autosave, then turn it off. Preferences -> Editor/Debugger, click downward triangle to expand menu -> Saving...

26 days ago | 0

Answered
how to solve this error ?
solutions = vpasolve(eq, epsilon_mg, [min(epsi, epsh), max(epsi, epsh)]); positive_imaginary = solutions(imag(solutions...

26 days ago | 0

| accepted

Answered
Multiobjective optimization with polygon boundary
convex hulls can always be represented as a series of linear inequalities, so you would use the "A" and "b" matrices A = [....]...

26 days ago | 0

Answered
Ideas on generalizing the syntax used for constructing complex variables
There is no hope of extending MATLAB such that 2dogs + 3cats is recognized. You are going to need an explicit constuctor -- whe...

27 days ago | 0

| accepted

Answered
What is the best practice for creating a recursion loop?
F = @(z) z^2 + c; That statement says that you are creating an anonymous function that takes a single parameter (shortcut name:...

27 days ago | 0

| accepted

Answered
How to covert binary data to original data format?
You cannot generally convert the uint8 stream into an in memory version of the original object. For example if you have the uint...

27 days ago | 0

Answered
Contains in cells extracted from a structure runs into char class problems
abc = {'def', 'gaha', 'hello'} contains(abc, 'gaha') so contains() works properly for cell arrays of character vectors. This...

27 days ago | 1

| accepted

Answered
How to Transmit and Receive Simultaneously Using USRP B210 in MATLAB
https://www.mathworks.com/matlabcentral/answers/1578660-how-to-transmit-and-receive-using-single-usrp-b210#answer_823530 The B...

27 days ago | 0

| accepted

Answered
How to I solve following meijerG function
syms a b epsilon meijerG((1-b)/2, [], [a/2, -a/2], [], epsilon) char(ans)

27 days ago | 0

Answered
Creating Single-Use Password for .exe app Created in MATLAB
In order to do what you want, you would have to program a control that connected to a server and authenticated to the server, wi...

27 days ago | 0

Answered
Compatibility of Matlab Compiler
You need the MATLAB r2024b version of MCR <https://www.mathworks.com/products/compiler/matlab-runtime.html>

27 days ago | 1

| accepted

Answered
MATLAB Simulink student license
No, it does not include the C2000 blockset. The C2000 blockset is not available at all for the Student license. You could pote...

27 days ago | 0

| accepted

Answered
Single and Multi-objective optimization
You can potentially use linear inequalities -- the A and b matrix. linear inequalities are accepted by all forms of ga() and ga...

27 days ago | 1

| accepted

Answered
How to spot infinite loops
for loops are never infinite. while loops are potentially infinite. You need to ensure that for sure at some point at least one...

28 days ago | 1

Answered
How to sort filenames that are stored by dir command
"dir" command read files in false order dir() returns file names in the order returned by the operating system. In turn, the op...

28 days ago | 0

Load more