Community Profile

photo

Jonathan Chin


Last seen: 3 días hace Con actividad desde 2016

Followers: 0   Following: 0

Contacto

Estadísticas

All
  • Knowledgeable Level 2
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Respondida
Matrix dimensions must agree.
n.*t *n* and *t* don't match dimensions, when you do *.** you are trying to do an element wise multiplication, since they ...

alrededor de 6 años hace | 0

Respondida
How to put more than 200000 line segments on a plot?
Not sure what you mean by cannot handle more than 200000 line segments. I was able to plot them using matlab 2017b and matlab 2...

alrededor de 6 años hace | 0

Respondida
How to count the number of consecutive negative values in a vector?
This might work using cumsum to find all the negatives in a group and hist to count the consecutive negatives v1 = [1...

más de 6 años hace | 0

| aceptada

Respondida
How to make this code more efficient?
acct1=Throw*bsxfun(@times,cos(CrankAngleRad)*ones(size(w)).',w.^2.'); acct2= Throw/ConrodLength*Throw*bsxfun(@times,cos(2...

más de 6 años hace | 0

Respondida
How can I plot the euro symbol? Which is its codification on matlab?
Take a look at the char function, you can look up the codes for other symbols here *https://www.ascii.cl/htmlcodes.htm* You can...

más de 6 años hace | 1

Respondida
Gettinga plot for daily Max values in a dataset for 8 months
There are many ways to do this, below is one example using inputdlg to get a user response for i =1:8 figure% create new...

más de 6 años hace | 0

Respondida
How to Curve Fitting saved plot (.fig)?
you can get the x y and z data from a fig %% some figure with data on it fig = figure(1); z = 0:10; x=15:25; y=...

más de 6 años hace | 0

| aceptada

Respondida
In the command window, use a for loop to fill a vector v with the squares of 2, 3, 4, 5.
you are overwriting your vector instead of filling the array v=zeros(1,4); % this is [0,0,0,0] v=[2,3,4,5]% pre-assi...

más de 6 años hace | 0

| aceptada

Respondida
What's the problem?
I assume you wanted to do an element divide see small below t=-50:1:50; y=(t.^2+9)./(t-3.^2); plot(t,y,'-k');

más de 6 años hace | 0

Respondida
Selecting numbers out of a text file?
Take a look at *str2num* txt='0,1,2,3,9,8.2,5,6,4,8,4,5,.2,4,3,2'; numArray=str2num(txt) if txt is a cell array you c...

más de 6 años hace | 0

Respondida
Hi please help me correct this error
function [func, j] = sysNonlinearEqs(X) % X here is a vector clc; % x = X(1); y = X(2); z = X(3) ; %Define F(x) ...

más de 6 años hace | 0

| aceptada

Respondida
how to select multiple files with similar extension
try looking at the following function *dir* path =pwd; extension = '.07' rtnFiles=dir(fullfile(path,['*' extension]))...

más de 6 años hace | 0

| aceptada

Respondida
suppressing output from user defined function
When you *call* your function use a semi colon at the end of the function to suppress the output. try *f=fib(n)* and *f=fib(n...

alrededor de 8 años hace | 2

| aceptada