Nick Counts
Virginia Commercial Spaceflight Authority
Followers: 0 Following: 0
Estadística
CLASIFICACIÓN
933
of 300.753
REPUTACIÓN
84
CONTRIBUCIONES
6 Preguntas
35 Respuestas
ACEPTACIÓN DE RESPUESTAS
50.0%
VOTOS RECIBIDOS
15
CLASIFICACIÓN
17.923 of 21.075
REPUTACIÓN
3
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
1 Archivo
DESCARGAS
1
ALL TIME DESCARGAS
32
CLASIFICACIÓN
37.659
of 170.858
CONTRIBUCIONES
0 Problemas
10 Soluciones
PUNTUACIÓN
120
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Resuelto
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
alrededor de 8 años hace
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
alrededor de 8 años hace
Resuelto
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
alrededor de 8 años hace
Resuelto
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...
alrededor de 8 años hace
Resuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
alrededor de 8 años hace
Resuelto
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
alrededor de 8 años hace
Resuelto
Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...
alrededor de 8 años hace
Resuelto
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
alrededor de 8 años hace
Resuelto
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
alrededor de 8 años hace
Pregunta
Prompt user before clearing axis when using the "clear axes" context menu
Today one of my users inadvertently selected "Clear Axis" (he was aiming for "Paste") while using a tool I wrote and maintain. T...
alrededor de 8 años hace | 5 respuestas | 2
5
respuestasPregunta
Help reducing huge time overhead when executing system() or unix() commands from Matlab function
I have a data processing program that goes through gigabytes of .csv text. The approach I've been taking is to use grep (Mac or ...
alrededor de 8 años hace | 1 respuesta | 0
1
respuestaRunning Applescript during MATLAB code
Hi, Regan, It looks like the issue is with paths on OSX and not Matlab. That error is because OSX's |osascript| can't find th...
alrededor de 9 años hace | 0
| aceptada
How can I graph this matrix?
As KSSV said, we need to know what you mean by "graph the matrix." Your code will definitely make a line, though. From the do...
alrededor de 9 años hace | 0
Plot out of cell array with attributes
I think you are looking for |gscatter|, which allows you to define a "group vector" and then define different styles for each gr...
alrededor de 9 años hace | 1
Function inside MATLAB Gui code not outputing variable
Morgan, Sorry if it seemed like we were asking you for something you already gave us, but the entirety of the error message i...
alrededor de 9 años hace | 1
| aceptada
How do I plot a line graph from two for loops?
If you want to do a simulation where you are stepping forward in time, I suggest saving the results of each timestep so when you...
alrededor de 9 años hace | 1
| aceptada
How do I put minor ticklabel on and ticklabel off ?
I'm a dummy - I completely forgot about |HideEndTicksIfOutside| ! Setting this to 'on' will hide both the Major tick mark and...
alrededor de 9 años hace | 0
How do I put minor ticklabel on and ticklabel off ?
Ok, I have a possible workaround. It doesn't truly answer your question, but it might still achieve your aim? You could shif...
alrededor de 9 años hace | 0
Define vector to use for colorbar
Ok, I spend some time with this and I think i see what's happening. It all boils down to the way you define the CData property o...
alrededor de 9 años hace | 3
| aceptada
I have created a subplot with many different diagrams. Now i want to set the coordinates range.
Philip, I am unable to reproduce your issue with | axis ([ -500 500 0 222])| changing the limits of all plots. However, yo...
alrededor de 9 años hace | 0
| aceptada
Where to format plot?
look at the axis property ax.NextPlot. During axes creation, I believe this is set to 'replace' by default. When some o...
alrededor de 9 años hace | 1
Define vector to use for colorbar
Joel, I don't know about a vector, but you can set upper and lower limits. It looks like you are saving a handle to the color...
alrededor de 9 años hace | 0
changing the x axis candle stick chart
Sorry, it looks like I misunderstood your issue. Without seeing what your variables are (data types, sizes, etc) it's a little t...
alrededor de 9 años hace | 1
| aceptada
Delete Entries in Cell arrays with a certain criterea
This is messy, but here is an example. I'm sure there's a slick way to do this with logical indexing, but I can't quite wrap my ...
alrededor de 9 años hace | 0
Create a uitable with dynamic rows in GUIDE
You can define a default row cell and use repmat() to build a cell array of the size you want: i = 7 defaultRow = {[],[]...
alrededor de 9 años hace | 0
| aceptada
Error when using legend or clicking on the plot
It looks like you have overloaded allchild.m Enter "which allchild.m" in the command window. You should see something like t...
alrededor de 9 años hace | 0
| aceptada
how do i solve this coding problem?
when you write an expression like (x4 < x1) when both x4 and x1 are sym objects, Matlab builds a new symbolic expression. It doe...
alrededor de 9 años hace | 0
pressing key within mfile function
Afsoon, Without your function's code, it's a bit of a guess, but I think your issue probably has to do with variable workspac...
alrededor de 9 años hace | 0
why my output not display?
Walter is spot-on that the .m file is really needed for specific help. If I read your problem description correctly, you are try...
alrededor de 9 años hace | 0







