답변 있음
Resolution of the gamultiobj's variable
Search over integers -100 to +100 and divide by 100 before use.

거의 2년 전 | 1

답변 있음
Hi i created a matfile of hourly temperature 334*334*2928 . how i can convert the .mat file to Tif file ?
I suggest using the Mapping Toolbox, geotiffwrite

거의 2년 전 | 0

| 수락됨

답변 있음
How to make the font sizes of Xlabel, Ylabel, and Title different in a heat map using MATLAB?
h = heatmap(......); warnstate = warning(MATLAB:structOnObject', 'off'); sh = struct(h); warning(warnstate); sh.Axes...

거의 2년 전 | 1

| 수락됨

답변 있음
Functions returning part of N-D data
How do I write the class to make the colon work by itself? You would have to make bar a property instead of a method. Once it i...

거의 2년 전 | 0

답변 있음
How do I pass a dynamic number of output variables to a function?
OutputVariable = cell(1,NumberOfOutputsNeeded); [OutputVariable{:}] = FunctionCall(parameters, as, appropriate);

거의 2년 전 | 0

답변 있음
Launching MATLAB2024a
You are using a Campus-Wide license, which is a form of Educational license. In that situation, you do not activate against yo...

거의 2년 전 | 1

답변 있음
Hi, everyone, why is the laser output power not shown in the figure?
plot(Z, y_history(4, :), 'y>-', 'DisplayName', 'Pp2-'); plot(Z, y_history(5, :), 'r', 'DisplayName', 'Ps+'); plot(Z, y_history...

거의 2년 전 | 0

| 수락됨

답변 있음
Rand in the constructor of a class and createArray
When you have static properties of the class, then the value that is assigned when the class is loaded is used for all subsequen...

거의 2년 전 | 0

답변 있음
How to get mexcuda running - compiler settings
and Microsoft Visual Studio 2015 (community edition). That was the problem. All versions of MATLAB that supported VS 2015 neede...

거의 2년 전 | 0

답변 있음
Shading of viscircles weird behavior
viscircles() uses 2D coordinates, with an implicit ZData of 0. When you draw a surface, the surface has 3D coordinates. When ...

거의 2년 전 | 0

| 수락됨

답변 있음
Truth Table Test Coverage Results Unclear
My interpretation would be that the T or F in normal font is the expected solution for the situation. Then if the expected solut...

거의 2년 전 | 0

답변 있음
Unable to called a function
You are using a third-party package that implements some of its functionality through mex code. The package is calling upon rk78...

거의 2년 전 | 0

답변 있음
Can I send image from Matlab to iPhone?
https://www.mathworks.com/matlabcentral/fileexchange/64652-matlab_to_iphone_and_ipad With this toolbox, you can create Apple i...

거의 2년 전 | 0

답변 있음
Count unique vector in a sequence
Put them together into one 2D array, arranging them as rows (rather than as columns), and then use unique() with the 'rows' opti...

거의 2년 전 | 2

| 수락됨

답변 있음
MCC USB-231 DAQ Digital I/O
USB-231 is not a supported device. https://www.mathworks.com/matlabcentral/answers/2132986-mcc-usb-231-compatibility-with-simul...

거의 2년 전 | 0

| 수락됨

답변 있음
The Output structure of a code is showing different outputs in command window and workspace
The command window version is the result of an implicit execution of the display method. The display method examines the object ...

거의 2년 전 | 0

| 수락됨

답변 있음
Does SoC Model Creator support only Vivado 2020.2?
Vivado 2023.1 requires R2023a. https://www.mathworks.com/matlabcentral/answers/518421-which-versions-of-xilinx-vivado-are-suppo...

거의 2년 전 | 0

답변 있음
Error message when using timers in AppDesigner after a few seconds running
'TimerFcn', @app.timerTest); the timer will be created with a TimerFcn that is a function handle to a function that expects two...

거의 2년 전 | 0

답변 있음
Why does the error at the bottom show up even though the correct dataset seems to be selected?
Your values in the table are scalars. You cannot create response variables from scalars.

거의 2년 전 | 0

답변 있음
Confusion of IMAQ, get data "logging"
Before getdata has been invoked, the images either do not exist (for cameras that do not have an automatic shutter) -- or else t...

거의 2년 전 | 0

답변 있음
Error when using "retime" function MATLAB 2024a.
One of the timetables contains a variable named INV1Spd but that variable is not type single or double. You should check that t...

거의 2년 전 | 0

답변 있음
dicomreadVolume 'Directory was not readable' error
You would get that error if MATLAB cannot find the given file on the MATLAB path. Typically, that means that you specified the ...

거의 2년 전 | 0

답변 있음
Using output of a function into the integral2 Function - Unrecognized function or variable
U_Rad is defined only as the nominal output variable of function Cuts. You call E_Plane(n) = Cuts(loop_theta, phi_E); ...

거의 2년 전 | 0

| 수락됨

답변 있음
Which MATLAB license should I buy as a reseacher working in an NGO?
You cannot use a Student license or a Home license for your research work. Officially you will need to get a Standard license (...

거의 2년 전 | 1

답변 있음
Please I want help I have homework I made a mistake saving the file
Sorry, the code is gone. The one remaining hope is that an .asv might have been saved in the same directory as the file. https...

거의 2년 전 | 0

답변 있음
Displaying figure from function in MATLAB gui
function Plot(Val, ax) X = [0:0.5:5]; Y = [0:0.1:1]; [x,y] = meshgrid(X,Y); z1 = [x.*y.*57.5]; ...

거의 2년 전 | 0

| 수락됨

답변 있음
solving symbolic equations with partial derivatives
You need to create a function, theta, and express the other functions in terms of theta, and then use functionalDerivative

거의 2년 전 | 0

답변 있음
sum of harmonic series 1+1/2+1/3
syms n result = symsum(1/n, 1, 5000)

거의 2년 전 | 1

답변 있음
Difficulty in plotting equation in matlab
N = 1.15; k = 1.38e-23; q = 1.6e-19; Vgo = 1.174; Rso = 0.085; Iso = 21.6e-15; alphao = 0.0165; Rth = 1; T_ambient...

거의 2년 전 | 0

답변 있음
Error in ode15s
[t,T]=ode15s(@f,t,IC); ode15s is to invoke function f, passing it time in the first parameter and passing initial conditions in...

거의 2년 전 | 0

더 보기