photo

Stephan Ciobanu


Last seen: plus d'un an il y a Actif depuis 2020

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
7 Réponses

Cody

0 Problèmes
19 Solutions

RANG
3 114
of 299 221

RÉPUTATION
18

CONTRIBUTIONS
0 Questions
7 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
3

RANG
 of 20 665

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
19 414
of 163 778

CONTRIBUTIONS
0 Problèmes
19 Solutions

SCORE
265

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer
  • Community Group Solver
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Could someone explain this straight line function?
Hi! a(1) % extracts the first element of array a a(2) % extracts the second element of array a if a is an array: with ...

plus de 4 ans il y a | 1

| A accepté

Réponse apportée
How to get Sum the values of positive even elements from vector x using only one command?
% Hi! % You can try this: My_sum = sum((x(2:2:end)>0).*x(2:2:end));

plus de 4 ans il y a | 1

Réponse apportée
How could I use display function for this?
% Hi! % if dt*t gives you a numeric array % you can use: disp(num2str(dt*t)) % or fprintf('My result is dt*t = %6.5f \n',...

plus de 4 ans il y a | 0

Réponse apportée
How to interpolate under specific condition?
Hi, this code should work: The file Daily data.xlsx must be in the same directory as your script! DATA = importdata('Daily dat...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Need Help..............Error using stem (line 43) X must be same length as Y.
xaa is an 1x101 array and t1 is 1x6001 array. Put t1 instead of t when you define xa11,xa22,xa33,xa44 xa11=2*sin(f1*pi*t1); ...

plus de 4 ans il y a | 0

| A accepté

Réponse apportée
Diagonally Dominant Check & Change for Coefficient Matrix and Result Vector
Hi! This code should work for your requests: By the way, I'd rather calculate Where is the Gauss-Seidel matrix iteration, a...

plus de 4 ans il y a | 1

Réponse apportée
Graph is blank. Why?
you can try to specify the interpolation method: mmf = interp1(flux_data, mmf_data, flux ,'pchip') % or mmf = interp1(f...

plus de 4 ans il y a | 0