photo

Naty S


Tactical Robotics

Aktiv seit 2012

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

8 Fragen
12 Antworten

Cody

0 Probleme
8 Lösungen

RANG
3.340
of 300.779

REPUTATION
17

BEITRÄGE
8 Fragen
12 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
4

RANG
 of 21.084

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
44.482
of 170.997

BEITRÄGE
0 Probleme
8 Lösungen

PUNKTESTAND
90

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Review
  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

fast 10 Jahre vor

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

fast 10 Jahre vor

Gelöst


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...

fast 10 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

fast 10 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

fast 10 Jahre vor

Gelöst


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...

fast 10 Jahre vor

Gelöst


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 ...

fast 10 Jahre vor

Gelöst


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:...

fast 10 Jahre vor

Beantwortet
How to include a filtered signal in ODE 45 solver
Just a thought but you could smooth how ever you like prior to the ODE and create a lookup table to replace the square function ...

fast 10 Jahre vor | 0

Beantwortet
How to compile a simulink model for 3d surface plot, which can find z for user defined (x,y)
Hey Have you tried this: http://www.mathworks.com/help/simulink/slref/2dlookuptable.html Naty

fast 10 Jahre vor | 0

| akzeptiert

Beantwortet
Simulink is running very slow in a high end laptop
Have you tried using simulink accelerated mode? http://www.mathworks.com/help/simulink/ug/choosing-a-simulation-mode.html

fast 10 Jahre vor | 0

Beantwortet
How to put the parameter of a controller as an increasing variable, so that after each simulation it increases itself and simulates automatically. I do not want to enter a value each single time manually and wait for the simulation.
The parameter you want to test should be taken from the workspace, then you could run the simulation in a for loop in a matlab c...

fast 10 Jahre vor | 1

Beantwortet
Accessing all values of a certain field inside a structure array in Simulink
Amm, I didn't get an error with what you mentioned but maybe this will work: test_struct(:).B

etwa 10 Jahre vor | 0

Beantwortet
Best method for saving figures at given location, in given format etc. ?
You might want to use the get function to get your screen size. scrsz = get(0,'ScreenSize'); fig_handle=figure('Positio...

etwa 10 Jahre vor | 0

Frage


GUI drag and drop listboxes
Hey, I have got a listbox with lots of strings that represent different parameters. I would like to drag them to different li...

etwa 10 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How do I delete a series of elements from a vector?
You'll need to find the indexes which you want to keep. After you got the indexes just type c= A(desired indexes). e.g c= A...

mehr als 10 Jahre vor | 0

Beantwortet
How can I add figures from a looping script in the report generator toolbox?
Hey This is a bit of a workaround. Ran a for loop from i=1:1:length(findobj('Type','figure')); Inside the for loop i used t...

mehr als 10 Jahre vor | 0

| akzeptiert

Frage


BytePack command in Matlab
Hey I am using the bytepack command in Simulink. I was wondering if there in an alterntive for the same command in Matlab. coul...

mehr als 10 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
how to do this array problem matlab
Hey HIGH If I understand you correctly you want to sum the square value of a vector. Check the functions sum and sqrt http:/...

fast 11 Jahre vor | 0

| akzeptiert

Frage


Plotting 4d data with matrices.
Hey all, I am trying to plot a 4d plot( meaning 3 axis and 1 color) , I have looked at scatter3, mesh ,plot4d etc. but i was h...

mehr als 12 Jahre vor | 3 Antworten | 0

3

Antworten

Beantwortet
Sending a Function Handle to a Function
So i can't send a string, must i send a function? That's where the error occurs: function ret = bl_poincare_map(poin_sec,c...

mehr als 12 Jahre vor | 0

Frage


Sending a Function Handle to a Function
Hey all I am trying to a send a function handle to a different function. Inside the function handle i have a got a variable wh...

mehr als 12 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
While loop doesn't continue looping!
Use continue instead of break. But i don't think you really need all those breaks or continues. Try without them. and in th...

fast 13 Jahre vor | 0

Frage


Index exceeds matrix dimensions but only in parfor and not for
hey I am new to parallel computing. I have been trying to get my simulation run using parfor, however when i am using parfor i ...

fast 13 Jahre vor | 3 Antworten | 3

3

Antworten

Frage


Take a Scatter graph and fill the gaps between the dots.
Hello I have got a 2D matrices X,Y(100x150).each (i,j) at x corresponds with (i,j) at y. I have used scatter to place the point...

etwa 13 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Legend Choose Scatter and not plot
hey all My problem is that in my code i first use the scatter command and then i use the plot cmd . when i ask for the matlab t...

mehr als 13 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Fitting Functions
Thanks

fast 14 Jahre vor | 0

Frage


Fitting Functions
I have a Vector of Data. and i want to do a fitting to the Vector. but I want the fit to be in the shape of: A/x+B/x^2+C/x^3....

fast 14 Jahre vor | 3 Antworten | 0

3

Antworten