
Walter Roberson
I do not do free private consulting. If you want to bring my attention to something, send a link to the MATLAB Answers location. I am currently caught up to T0099119; if you are waiting on a reply from me for an older issue, please send me a reminder.
C, MATLAB, Shell, Perl, Fortran
Spoken Languages:
English
Statistics
RANK
1
of 272.981
REPUTAZIONE
128.672
CONTRIBUTI
35 Domande
57.203 Risposte
ACCETTAZIONE DELLE RISPOSTE
51.43%
VOTI RICEVUTI
16.955
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Content Feed
I would like to extract x,y,z coordinates of any 3 atoms from a pdb file. How to rectify this error and make it generalized?
% N = range of indices for example N=1:7; Q = [ubq.Model.Atom(N).X; ubq.Model.Atom(N).Y; ubq.Model.Atom(n).Z].'; This...
circa 7 ore fa | 1
Dynamic plot in real time
pick nominal x coordinates for the endpoints of the see-saw. Create a line that has those as the x coordinates and has the "curr...
circa 7 ore fa | 0
Error: File: project_01.m Line: 61 Column: 26
elseif Hexa_number_small = Hexa_row_small * (Hexa_number - 1); elseif must be followed by a condition, not an assignment.
circa 7 ore fa | 0
Error in ode45 (line 115) odearguments(FcnHandlesUsed, solver_name, ode, tspan, y0, options, varargin);
delta = 1; That is a numeric scalar. Valid indices for it are numeric 1, logical true, logical false, and the empty vector....
circa 8 ore fa | 0
Why do I get unrecognized function or variable when calling constructor in app designer
TFeature is not a property or method of the class, and it does not exist at the time the properties list is being parsed. It is ...
circa 14 ore fa | 0
saving figures to a video with VideoWriter
getframe() with no options is not guaranteed to return the same size each time. In practice the size of an axes can vary by (if ...
circa 14 ore fa | 0
How can I specify the dimension of a differentiated function?
diff() is generally successive differences. It is only derivative if the first parameter is sym or symfun, both from the Symboli...
1 giorno fa | 0
Finding a redundant pattern in a matrix
C1=[ 5 9 3]; C2=[ 9 5 3]; C3=[9 5 9 3]; C4=[5 9 8 3]; C5 = [5 3 9 8]; is_in(C1, C2) is_in(C1, C3) is_in(C1, C4) is_in(C1, ...
1 giorno fa | 0
Connecting to USB device with serialport vs. serial command
serialport does not have any fopen() or fread() . It automatically opens the port when you create the object, and it uses read()...
1 giorno fa | 0
Empty matrix, scalar, or vector function in loop
MATLAB uses == for comparisons, not = Also, X = [] Y = 1 if X == []; disp('X yes 1'); end if Y == []; disp('Y yes 1'); end ...
1 giorno fa | 0
Numeric data becomes zero after conversion from Table
I predict that you have format short in effect, and that what is being displayed is not really 0 but is instead something of t...
1 giorno fa | 0
| accettato
Why results of the 'solve' are wrong?
p_max=715.685424949238; (and a bunch of other numbers). What does that input mean? Does it mean that p_max is exactly ? Does ...
2 giorni fa | 1
| accettato
Excel sheet data upload "Invalid 'DataRange'. The column size must match the number of variables".
opts.DataRange = "A2:AT78"; That requests that column "A" to "AT" be read in. However, M1_New_Macro1.xlsx only has data up to c...
2 giorni fa | 1
Logical operator not evaluating correctly
A|B is an or test and returns a logical value -1 is nonzero which is considered true, and since you or everything together you a...
2 giorni fa | 0
Hi.How I can plot W_m to n connection
See <https://www.fieggen.com/shoelace/lacingmethods.htm> for some of the possible ways to plot that.
2 giorni fa | 0
Receiving mouse clicks in App Designer UIAxes - stops working after imshow
https://www.mathworks.com/help/matlab/creating_plots/capturing-mouse-clicks.html MATLAB considers graphics objects to be layer...
3 giorni fa | 0
| accettato
molecular code in matlab
There are a lot of undefined variables there. There are two possibilities: There might be another script that you have to exec...
3 giorni fa | 0
Need help coding this
Example. fun = @(x, y) (x + y).^3 - 5*(x.*y) - 1; [X, Y] = meshgrid( linspace(0,2)); z = fun(X, Y); contour(X, Y, z);
3 giorni fa | 0
I have a data 5x148992 , i have to extract data column wise and check if there is any changes wrt previous column and display when there are chnages?
for i = (data( : , : )) data appears to be a 2D array. When you have something of the form for VARIABLE = EXPRESSION; BODY;...
3 giorni fa | 0
| accettato
How to add Line/Markers to an Axis Label?
L = "G\prime ( \bullet ) and G\prime\prime ( \color{red}{\bullet}\color{black} ) (Pa)"; ylabel(L, 'interpreter', 'tex') See al...
3 giorni fa | 0
| accettato
How to calculate the symbolic integration of rational functions?
Wolfram Alpha says https://www.wolframalpha.com/input?i=int%281%2F%28x%5E4+%2B+x%5E3+%2B+x%5E2+%2B+x+%2B+1%29%2C+x%2C+0%2C+1%29&...
3 giorni fa | 0
Solving large linear systems of equations in parallel / distributed systems
Gb = 60000^2*8/1024^3 The matrix is close to 27 gigabytes. The inverse is the same size, so you will need at least 54 gigabytes...
3 giorni fa | 0
How to make a new column in my table
elseif requires a expression after it, but you coded an assignment. You just want else not elseif Remember that if Results(...
3 giorni fa | 0
Need a to plot a graph
hvals = linspace(0,17); numh = length(hvals); Vtotal = zeros(numh, 1); H1 = 11; %in H2 = 5; %in m r1 = 3.5; %in m r2 = ...
3 giorni fa | 0
Trial download 2021b
only Mathworks Sales can generate trials against older versions.
3 giorni fa | 1
how can i imagie zoom with Convolution method
It is deliberate that the following does not do exactly what you want to do. It is also deliberate that it has some extra steps ...
3 giorni fa | 0
How can I simplify my code using loops?
Put the channels into a cell array: lena_ch = num2cell(lena, [1 2]); Now you can loop over the rows of indices = perms(1:3) ...
4 giorni fa | 0
I need help writing equation in matlab
format long g syms x n m result = symsum(x^n/factorial(n), n, 0, m) limit(result, m, inf) result20 = subs(result, m, 20) ex...
4 giorni fa | 0
How can I make the execution speed consistent while I am testing the speed of the programs?
I am not convinced that virtual machines will be allocated dedicated resources that will not be affected by other activities. ...
4 giorni fa | 0