Community Profile

photo

Cesar Antonio Lopez Segura


Last seen: environ 4 ans il y a Actif depuis 2018

Followers: 0   Following: 0

Statistiques

  • Knowledgeable Level 2
  • Thankful Level 1
  • Revival Level 1
  • First Answer

Afficher les badges

Feeds

Afficher par

A répondu
Solve multiple equations for multipe variables
Hi Roy, Tets this code and let me know if you need some help: a = 4 ;y = 22.5; % Known values xo = 1; % initial b val...

plus de 5 ans il y a | 0

| A accepté

A répondu
How to change the interior of the drive in "SimPowerSystems"
Hi Sardor, If you want to change a power system block the firs step should be to do a look under mask: <</matlabcentral/an...

plus de 5 ans il y a | 0

A répondu
the isnumeric function and the NaN
Hi, Write this in your command window: isnan( [ 0 1 NaN] )

plus de 5 ans il y a | 0

A répondu
Create a vector z with 1000 elements generated by the rand-function. The generated values must have a mean value of 0.5 (mean(0.5)). And a standard deviation of sqrt(1/100*12), (std(x)).
Hi all Here the code: mu = 0.5; sigma = 0.3464; z = mu + randn(1,1000)*sigma STDcalculated = std( z ) MuCalc...

plus de 5 ans il y a | 1

| A accepté

Question


Re-write repeated values of a matrix using intermediate increased values
Hi all, I have some problems to rewrite a matrix with the values that I need. The following code do this: * Step0 = a matri...

plus de 5 ans il y a | 2 réponses | 0

2

réponses

A répondu
Creating a matrix index
Hi Edward, Here your question is answered: Z = [ 5,1,3,6,7,8,9,10,4,6]'; size(Z) % check matrix size Matrix5by10...

plus de 5 ans il y a | 0

A répondu
Error labelling table columns
Hi Luis Eduardo, We need your complete code to help you. But using this example I have not errors. vector = cat( 1,[1:8]...

plus de 5 ans il y a | 0

| A accepté

A répondu
implementation of Fibonacci Search
Hi, here your code %% clc;clear all;close all x = [-1000:100:900] a1 = 0.3039 ; b1 = 0.1524 ; c1 = 0.3671 ; a2 = ...

plus de 5 ans il y a | 0

A répondu
Discrepancies in LQR controller for continuous and discrete time.
Hi Saul, To analyze your question I create two Simulink models. The first one is an open loop plant and second one is a close...

plus de 5 ans il y a | 0

A répondu
I have another problem. Can someone check and tell me what should I do?
I try to help you but my error msg is 'upsample' function is not defined.

plus de 5 ans il y a | 0

A répondu
"Vectors must be same length" Please help with plotting!
Hi, What is the value of 'To'? Is 'To' a scalar o vector? The following code has not errors: %% To = 0; h = ...

plus de 5 ans il y a | 0

A répondu
How can i generate a function using this points?
Hi Here the solution: % Your cloud point x=[1,3,8,25,45,23]; y=[25,24,13,69,25,75]; % calculate a new clou...

plus de 5 ans il y a | 0