vidhathri bhat
Followers: 0 Following: 0
Statistics
RANK
3.344
of 295.527
REPUTATION
16
CONTRIBUTIONS
1 Question
13 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 20.242
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
Question
Why can I not answer matlab answers questions?
I am unable to answer or comment on any questions from this forum. When I try to answer or comment I don't get the text box to w...
meer dan 4 jaar ago | 2 answers | 0
2
answersHow to define answer value which i got it from ''for'' loop as a variable and use it in the same loop?
Hi, When you run the loop, on the first iteration if it is going to the else part, then there is no h2toplam variable defined a...
meer dan 5 jaar ago | 0
| accepted
random number between 0 and 1
Hi Instead of generating the array using randi function, you can create a zeroes array and pick 312 random indices and make the...
meer dan 5 jaar ago | 0
Convert image coordinate to cartesian coordinates
Hi, In an image (0,0) co-ordinate is at top-left and in cartesian co-ordinate system it is at bottom left. That is why you are ...
meer dan 5 jaar ago | 0
Why doesn't my code loop back up to the top again and how to fix it
Hi Answer = input('Is there a new item? hit 1 for yes 0 for no: ','s'); % altering final condition In this line you are readi...
meer dan 5 jaar ago | 0
| accepted
having trouble with number displays in matrix
Hi Try using format long g This will suppress scientific notation.
meer dan 5 jaar ago | 0
Need help creating a for loop
Hi You can just use simple for loops to do this. data = [] for i=95:-5:5 data = [data 5:5:i] end end
meer dan 5 jaar ago | 0
three-dimensional matrix and Excel
Hi, How do you want your 3rd dimension to be represented in excel? You can use reshape command to change the matrix to be a 2D ...
meer dan 5 jaar ago | 0
| accepted
colour intensity from different areas
Hi Intensity of image is given by (R+G+B)/3. You can calculate it using matlab. Refer to this page. https://www.imageeprocess...
meer dan 5 jaar ago | 0
| accepted
How to convert sometimes negative decimal matrix to two's complement
Hi You can use num2bin() function to do that. Here is an example. You can check out the functions here to change the parameter...
meer dan 5 jaar ago | 0
Structural similarity for RGB image
Hi, ssim function in matlab does not support RGB images. You will have to convert both images to greyscale image.
meer dan 5 jaar ago | 0
How to pass variables to .app standalone
Hi You can check out this matlab Answers question and see if it helps you. Also you can take a look at KeyInject function to...
meer dan 5 jaar ago | 0
MAtlab 2018b crashes after opening to point of accepting input.
Hi I'm assuming that problem started after installation of 2018b. If so you can contact mathworks. They provide free support fo...
meer dan 5 jaar ago | 0
how can i express the following question in matlab about save command?
Take the input from the user as to whether he wants jpeg or png image using if-else statement. prompt = 'input 1-for jpeg 2-for...
meer dan 5 jaar ago | 0