photo

ScottB


University of Southern California

Last seen: 3 dagar ago Active since 2012

Followers: 0   Following: 0

Message

Statistics

  • Knowledgeable Level 2
  • 3 Month Streak
  • First Review
  • First Answer

View badges

Feeds

View by

Answered
deadspace in UIaxes near image
You could try "axis tight".

4 dagar ago | 0

| accepted

Answered
How does indexing work when sorting a matrix?
For matrices, ‘sort’ orders the elements within columns.

5 dagar ago | 0

Answered
changing the scale on the Y axis
ylim([-1 1]); y_values = [-1:0.2:1]; ha = gca; set(ha, 'ytick', y_values); yticklabels('manual'); yticklabels(y_values);

ungefär 2 månader ago | 0

Answered
Unrecognized function or variable 'del'.
del is a native function: Delete a ROS parameter - MATLAB del (mathworks.com) Try renaming your variable. You also need and "e...

3 månader ago | 0

Answered
Oribital elements from ECI to ECEF
There is eci2ecef: Position, velocity, and acceleration vectors in Earth-centered Earth-fixed (ECEF) coordinate system - MATLAB...

4 månader ago | 0

Answered
Get UITable Physical Column Width
w = uitable set(w,"ColumnWidth",{10}) g = get(w,'ColumnWidth')

4 månader ago | 0

Answered
3D scatter plot: can I make transparent points
You can set the alpha attribute for each marker: [X,Y] = meshgrid(-10:10); Z = ones(21,21) * -2; surf(X,Y,Z) hold on scat...

4 månader ago | 0

Answered
description of highlighted code
The first line of the highlighted code means the element of matrix dxdt in row 1 column 1 is equal to the second element of the ...

4 månader ago | 0

Answered
how to read and write a gray AVI video file in 16 bit
The command VideoWriter has an attribute called "VideoBitsPerPixel" which is the number of bits per pixel in each output frame.

7 månader ago | 0

Answered
Saving a Script from another script
You can write or modify a script from script. I've done it using fopen, fprint, and fclose commands. The example in the docume...

9 månader ago | 0

Answered
Why do my legs fall through the ground?
"determined the upper surface of the Earth" The actual terrain height at a point on the Earth is the WGS-84 ellipsoid plus th...

9 månader ago | 0

Answered
I was calculated using the Simpson 1/3 rule numerical method, why my running results doesn't appear in the command window?
A semi-colon at the end of a line suppresses display of the result.

9 månader ago | 0

Answered
what this equation means 4*L/(2*i-1)?
Yes, Matlab sees "i" as complex. Maybe pick another variable if you are just using scalars.

9 månader ago | 1

| accepted

Answered
MATLAB is selecting SOFTWARE OPENGL rendering when open matlab as user
You can start Matlab in Linux without OpenGL using: matlab -nosoftwareopengl

10 månader ago | 0

Answered
Matlab is not running "MATLAB is selecting SOFTWARE OPENGL rendering"
You can start Matlab in Linux without OpenGL using: matlab -nosoftwareopengl

11 månader ago | 0

Answered
Start New Matlab Window From Command Line.
Adrian, Take a look at the "system" command: system('matlab')

ungefär 12 år ago | 1

| accepted

Answered
chop a 1-D vector
z = rand(1000,1); a = size(z) z(1:2) = []; b = size(z)

ungefär 12 år ago | 0

Answered
legend on subplot
Each subplot is a unique axis. The legend command lets you specify the axis where the legend will be created: "LEGEND(AX,...)...

mer än 12 år ago | 0