![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/aditya17009iiitdacin_1518099569179_DEF.jpg)
Aditya Verma
Followers: 0 Following: 0
Statistik
0 Fragen
10 Antworten
RANG
2.662
of 297.016
REPUTATION
22
BEITRÄGE
0 Fragen
10 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
3
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Plotting Piece-wise like function
You can use hold to plot multiple graphs in the same figure. This way you can graph any picewise function: x1 = 0:3; x2 = 3:4;...
mehr als 4 Jahre vor | 0
| akzeptiert
1-d array plotted with imagesc shown as 2-d
You can change the size of the current figure (gcf) using the position propery: imagesc(1:10); set(gcf,'position',[0, 0, 500, ...
mehr als 4 Jahre vor | 0
intensity value of the pixel located
Your image is stored as a matrix in MATLAB. So, for getting the pixel intensity value you need to read the image: image_mat = r...
mehr als 4 Jahre vor | 1
| akzeptiert
how can i convert following script into c coding
Hi! You can check out MATLAB Coder, it allows you to generate C/C++ code from MATLAB code. However it doesn't support all MATLA...
mehr als 4 Jahre vor | 1
| akzeptiert
How to export imaris image to MATLAB?
Hi! While MATLAB doesn't support imaris file format out of the box (which can be check from here), you can use the implementati...
mehr als 4 Jahre vor | 0
Work with data just in selected paths
Hi! Could you check in the lists of all search paths if you have accidently added those subfolders? You can check it using the ...
mehr als 4 Jahre vor | 0
Porting code to c++
Hello! You can try the famous OpenCV library. It also has inbuilt constructs to parallelize your code. It uses the BSD 3-Clause...
mehr als 4 Jahre vor | 0
Setting Axis scale steps
Hello, You can set the x-axis ticks using xticks function: x = 0:0.1:5; plot(x, sin(x)); xticks(0:0.83:5); xlim([0 5]); ...
mehr als 4 Jahre vor | 0
| akzeptiert
How to write piecewise function in matlab for the following function. Please give me matlab code.
Hello there! You can code a piecewise function using conditional statements. More specifically, using if-else clause in this ca...
mehr als 4 Jahre vor | 1
How to repeat whole coding by increasing value of variable
Hi, you can use functions to avoid code repetition: for bus_value = 20:10:60 [ploss, location1, location2, real1, real2, r...
mehr als 4 Jahre vor | 0