Statistiques
RANG
9 645
of 278 001
RÉPUTATION
4
CONTRIBUTIONS
6 Questions
2 Réponses
ACCEPTATION DE VOS RÉPONSES
16.67%
VOTES REÇUS
2
RANG
of 18 806
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Content Feed
How do I interpolate and plot 3-D surfaces in MATLAB?
Also, see: https://www.mathworks.com/matlabcentral/fileexchange/5105-making-surface-plots-from-scatter-data uses Delaunay h...
3 mois il y a | 0
Question
How to obtain Real and Imaginary parts of symbolic polynomial
I have the below code. I cannot figure out how to obtain the real and imaginary parts of the symbolic polynomial (I have alread...
plus de 2 ans il y a | 1 réponse | 0
1
réponseHow to extract all the rows which match an specific string column
Use: T_dunita = strcmp(T.geol_unit, 'Dunita')
plus de 2 ans il y a | 2
Question
Optimizing constants applied to multiple vectors with multiple constraints
Hello, I have 6 vectors given below. I would like to find two constants, a and b, such that: 1) the elements of sqrt( (a*U).^2...
environ 3 ans il y a | 1 réponse | 0
1
réponseQuestion
How to create a penalty function in two dimensions for a profile curve?
Hello, I have a computer model that models a physical process that is represented by the black line shown in the attached figure...
plus de 3 ans il y a | 1 réponse | 0
0
réponseQuestion
Bessel Filter -3dB frequency
The documentation for besself states: "[b,a] = besself(n,Wo) returns the transfer function coefficients of an nth-order lowpass...
environ 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Need to Rotate Set of 3D Data
Hello I have attached a pdf file with significantly more details, graphs, and explanations. I would like to rotate a 3D set of...
plus de 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Vectorized indexing cell array
I have several (5000+) pressure-time histories in a cell array Data. Each cell in the Data array holds a two column vector of t...
environ 9 ans il y a | 1 réponse | 0
0
réponseA résolu
Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...
environ 11 ans il y a
A résolu
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...
environ 11 ans il y a
A résolu
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 ...
environ 11 ans il y a
A résolu
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
environ 11 ans il y a
A résolu
Put two time series onto the same time basis
Use interpolation to align two time series onto the same time vector. This is a problem that comes up in <http://www.mathwork...
environ 11 ans il y a
A résolu
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
environ 11 ans il y a
A résolu
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...
environ 11 ans il y a
A résolu
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...
environ 11 ans il y a
A résolu
Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...
environ 11 ans il y a
A résolu
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 ...
environ 11 ans il y a
A résolu
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
environ 11 ans il y a
A résolu
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:...
environ 11 ans il y a