Mark Saad
Followers: 0 Following: 0
Statistics
All
RANK
7,053
of 295,467
REPUTATION
6
CONTRIBUTIONS
0 Questions
7 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
1
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Solved
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:...
4 years ago
Answered
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/...
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/...
6 years ago | 1
Answered
How to plot a function with complex variables?
https://www.mathworks.com/help/matlab/creating_plots/plot-imaginary-and-complex-data.html
How to plot a function with complex variables?
https://www.mathworks.com/help/matlab/creating_plots/plot-imaginary-and-complex-data.html
6 years ago | 0
Answered
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 ...
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 ...
6 years ago | 0
Answered
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 ...
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 ...
6 years ago | 0
Answered
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...
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...
6 years ago | 0
Answered
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...
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...
6 years ago | 0
Answered
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 =...
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 =...
6 years ago | 0