回答済み
green arrow for current line and variable values not displaying during debug pause at breakpoint
The highlight might not align properly if you edit the file during debugging.

11ヶ月 前 | 0

回答済み
Code error trying to find the max h
You have I divided by h where I is the size of r. But r and h are row vector of different lengths. If each h has a correspond...

11ヶ月 前 | 0

回答済み
EEGLAB pop_clean_rawdata function
In https://github.com/sccn/clean_rawdata/blob/master/clean_channels.m we can see that the blocks numbers correspond to the numbe...

11ヶ月 前 | 0

| 採用済み

回答済み
Error using sin in my code
The .* operator is element-by-element multiplication. Your code is asking to evaluate the token sin and multiply the result by (...

11ヶ月 前 | 0

回答済み
I want to gererate pseudorandom integers using randi function, however I want have empty cells between the integers.
It is not possible to have empty positions in a numeric array. You would need to use a cell array, such as N = 3; out = {}; f...

11ヶ月 前 | 0

回答済み
How to locate a specific point within a grid system?
It sounds to me as if you should have a look at discretize -- which works fine if you can separate the two coordinates. If you ...

11ヶ月 前 | 0

回答済み
Can I use a school license for the Matlab R2023b pre-release version?
The prerelease license will expire in roughly two weeks, because the official R2023b has been released.

11ヶ月 前 | 1

回答済み
how to embed the satelliteScenarioViewer object to my app ui?
The only parts of the Aerospace Toolbox that can be compiled are a few functions whose name begin with quant ... or is the ques...

11ヶ月 前 | 0

| 採用済み

回答済み
How to apply symsum function for this eqaution
You cannot use symsum() for that purpose. symsum() expects a formula in a symbolic variable as the first parameter. The formul...

11ヶ月 前 | 0

回答済み
how to show Transfer function in gui static text like in command window
aux = tf(0.01, [0.005, -0.04, -0.1]); T = evalc('aux'); Tcell = regexp(T, '\n', 'split'); Tcell = Tcell(4:6); set(handle...

11ヶ月 前 | 0

| 採用済み

回答済み
HTTP error code 12029 when trying to install compiled app
You are probably running into a challenge that most places stopped supporting an older HTTPS encryption. See https://www.mathwo...

11ヶ月 前 | 0

| 採用済み

回答済み
Creating 'n' matrices with each one with 'n' in its name
See https://www.mathworks.com/matlabcentral/answers/2020976-i-want-to-store-the-vector-from-each-for-loop-iteration-how-can-i-do...

11ヶ月 前 | 0

回答済み
Matlab double sum over vectors
Different versions, and their timings. Except... in different runs, the timings especially for the first version varied by more...

11ヶ月 前 | 0

| 採用済み

回答済み
How to write cell array to excel file?
writecell() in later releases. In your release you are either going to need to make a bunch of xlswrite calls or else you are go...

11ヶ月 前 | 0

回答済み
CANpack code generation Problem for MCU without floating-point math capabilities
roundf has been part of the C standard library since C99. However it expects floating point input and returns floating point out...

11ヶ月 前 | 0

| 採用済み

回答済み
Strange warning how to interpret it?
I got the same thing the first time I started r2023b official on my macos ventura intel (I had prerelease before that.) I create...

11ヶ月 前 | 1

回答済み
Are there any fees after the free trial ?
No. If you do not explicitly purchase the product then there will be no charge to you. This is not one of those cases where you...

11ヶ月 前 | 0

回答済み
How to make same subplot size at different figures regardless of the number of sub-plot?
For this task, do not use subplot. Instead use axes() with explicit 'Units' set to 'centimeters' or 'inches' or 'points' or 'pix...

11ヶ月 前 | 0

回答済み
equation of zero forcing receiver
W_ZF = ((H.^H) .* (H .* (H.^H)).^(-1)) .* S ; The first part of that expression results in a 128 x 8 array that is all infinit...

11ヶ月 前 | 0

回答済み
how to write a formula in matlab?
Use the Symbolic toolbox. Declare symbolic variable names with syms such as syms h_I T_0 t z MATLAB has no implicit multiplica...

11ヶ月 前 | 0

回答済み
Variable layer thickness using loops
sd(i) / dz sd(i) is a scalar but dz is a row vector. In MATLAB, the / operator is mrdivide, / matrix right divide. A/B is simi...

11ヶ月 前 | 0

回答済み
hi , can help me in this problem "Invalid text character. Check for unsupported symbol, invisible character, or pasting of non-ASCII characters." i don't know the solution
h_zf = X_zf * inv(H_true) * Y ;` That line has a ` (back-quote) at the end of that you need to delete, making it ...

11ヶ月 前 | 1

| 採用済み

回答済み
Detect figure or uifigure from the handle?
figure() handles do not have a property isUIFigure uifigure() handles have a property isUIFigure with value true

11ヶ月 前 | 0

| 採用済み

回答済み
Color Label Image By Region Property
discretize the orientation angle into an integer, uint8() that, then ind2rgb

11ヶ月 前 | 1

回答済み
Error message: Index exceeds matrix dimension
directory = uigetdir; if isnumeric(directory); fprintf('User cancel\n'); return; end mov_list = dir(fullfile(d...

11ヶ月 前 | 0

回答済み
How to prevent the saved images become uint8
PNG has no support for floating point pixels. TIFF has support for floating point, but the imwrite() interface to TIFF does not...

11ヶ月 前 | 0

回答済み
Why do I get an error trying to slice a 3D?
you cannot use surf to display solid volumes. See volshow

11ヶ月 前 | 0

回答済み
Downloading License File for Previous Version of MATLAB
Yes. If you run the on-line installer for any previous MATLAB release (back to R2008a or later) then it will automatically gen...

11ヶ月 前 | 0

回答済み
I want to replace strings in a column of a structure (see the picture) with numbers/codes. Can someone help with this??
codestrings = {'bgin', 'resp', 'stm+', 'TRSP'}; codevals = [-2, 3, 1, -4]; [found, index] = ismember(YourTable.columnlabel, co...

11ヶ月 前 | 0

| 採用済み

回答済み
Using GUI Designer to convert integer inputs to exponential form (convert MHz to integer Hertz)
If the user is expected to enter 5700 and that is to represent the same as 5700e6 would, then you should be multiplying by 1e6 i...

11ヶ月 前 | 0

| 採用済み

さらに読み込む