Community Profile

photo

Mark Saad


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

Statistiques

All
  • Solver
  • Knowledgeable Level 1
  • First Answer

Afficher les badges

Content Feed

Afficher par

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

presque 4 ans il y a

A répondu
how to write this equation ?
T = linspace (100, 1, 10); mu = @(t) 0.001 .* (0.2414 * 10.^(247.8./((t - 273) + 68.12963))); mu(T) <</matlabcentral/...

plus de 5 ans il y a | 1

A répondu
How to plot a function with complex variables?
https://www.mathworks.com/help/matlab/creating_plots/plot-imaginary-and-complex-data.html

presque 6 ans il y a | 0

A répondu
How can I display the second derive of a vector ,?
You can first import it into MATLAB as an array using textread. data = textread('essai_Al_but05_fixe_100Ohm.txt'); Then ...

presque 6 ans il y a | 0

A répondu
How to set custom origin point?
I was trying to do this the other day. I could not find anything, so I just manually shifted all of my data points. Let's say ...

presque 6 ans il y a | 0

A répondu
How can I extract and highlight the white portion of an image?
You can try this link: https://www.mathworks.com/discovery/edge-detection.html and this video: https://www.mathworks.com/vi...

presque 6 ans il y a | 0

A répondu
How can I transform a coordinates data into another 3-D space?
If you know angles through which they were rotated, you could try using rotation matrices. https://www.mathworks.com/help/pha...

presque 6 ans il y a | 0

A répondu
Row wise indexing of 3d array
You could try: [I,J,K] = ind2sub(size(array), find(array(:,:,:) < 0)); ind = find(J == 3); I = I(ind); J =...

presque 6 ans il y a | 0