Month: July 2024
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I’m trying to solve an boundary value problem with eigenvalues, following the article ( https://doi.org/10.1063/5.0155331 )
where and At are certain numbers and Q() is a known function, erf function in this case.
is the unknown function and the eigenvalue.
The boundary condition is , so I specified
For small alphas my code with bvp5c works well.
However for large alphas, my solution deviates from the result in the article, and I’m encountering messages like
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I guess the boundary values may be too small and tried to scale my boundary values with C*exp(-3/alpha) but the problem remains.
How can I solve the problem? Fig.1 in https://doi.org/10.1063/5.0155331 can be referred as a correct solution to this problem. My solution looks similar to it but deviates in asymptotic values.
eigenvalues0999 = zeros(1, 30);
global alpha;
global At;
options = bvpset(‘RelTol’,1e-5,’AbsTol’,1e-5);
At = 0.999;
for i=1:30
alpha=1/i;
Psi1 = 1;
solinit = bvpinit(linspace(-3,6,30000),@mat4init,Psi1);
sol = bvp5c(@mat4ode, @mat4bc, solinit,options);
eigenvalues0999(1,i) = sol.parameters;
end
figure(Color="white");
plot(eigenvalues0999);
grid on;
legend(‘0′,’0.243′,’0.5′,’0.843′,’0.999′,’FontSize’, 14)
xlabel(‘alpha^{-1}’,’FontSize’, 14);
ylabel(‘Psi’,’FontSize’, 14);
set(gca, ‘FontSize’, 14);
function dydx = mat4ode(x,y,Psi1) % equation being solved
global alpha;
global At;
dydx = [y(2)
(-alpha^2*At*2/sqrt(pi)*exp(-x.^2)*y(2)+(1+At*erf(x)-alpha*Psi1*2/sqrt(pi)*exp(-x.^2))*y(1))/(alpha^2*(1+At*erf(x)))];
end
function res = mat4bc(ya,yb,Psi1) % boundary conditions
global alpha;
res = [ya(2)-1/alpha*exp(-3/alpha)
abs(yb(1))+abs(yb(2))
%yb(2)
ya(1)-exp(-3/alpha)];
end
function yinit = mat4init(x) % initial guess function
global alpha;
yinit = [exp(-abs(x)/alpha)
-sign(x)*1/alpha*exp(-abs(x)/alpha)];
endI’m trying to solve an boundary value problem with eigenvalues, following the article ( https://doi.org/10.1063/5.0155331 )
where and At are certain numbers and Q() is a known function, erf function in this case.
is the unknown function and the eigenvalue.
The boundary condition is , so I specified
For small alphas my code with bvp5c works well.
However for large alphas, my solution deviates from the result in the article, and I’m encountering messages like
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I guess the boundary values may be too small and tried to scale my boundary values with C*exp(-3/alpha) but the problem remains.
How can I solve the problem? Fig.1 in https://doi.org/10.1063/5.0155331 can be referred as a correct solution to this problem. My solution looks similar to it but deviates in asymptotic values.
eigenvalues0999 = zeros(1, 30);
global alpha;
global At;
options = bvpset(‘RelTol’,1e-5,’AbsTol’,1e-5);
At = 0.999;
for i=1:30
alpha=1/i;
Psi1 = 1;
solinit = bvpinit(linspace(-3,6,30000),@mat4init,Psi1);
sol = bvp5c(@mat4ode, @mat4bc, solinit,options);
eigenvalues0999(1,i) = sol.parameters;
end
figure(Color="white");
plot(eigenvalues0999);
grid on;
legend(‘0′,’0.243′,’0.5′,’0.843′,’0.999′,’FontSize’, 14)
xlabel(‘alpha^{-1}’,’FontSize’, 14);
ylabel(‘Psi’,’FontSize’, 14);
set(gca, ‘FontSize’, 14);
function dydx = mat4ode(x,y,Psi1) % equation being solved
global alpha;
global At;
dydx = [y(2)
(-alpha^2*At*2/sqrt(pi)*exp(-x.^2)*y(2)+(1+At*erf(x)-alpha*Psi1*2/sqrt(pi)*exp(-x.^2))*y(1))/(alpha^2*(1+At*erf(x)))];
end
function res = mat4bc(ya,yb,Psi1) % boundary conditions
global alpha;
res = [ya(2)-1/alpha*exp(-3/alpha)
abs(yb(1))+abs(yb(2))
%yb(2)
ya(1)-exp(-3/alpha)];
end
function yinit = mat4init(x) % initial guess function
global alpha;
yinit = [exp(-abs(x)/alpha)
-sign(x)*1/alpha*exp(-abs(x)/alpha)];
end I’m trying to solve an boundary value problem with eigenvalues, following the article ( https://doi.org/10.1063/5.0155331 )
where and At are certain numbers and Q() is a known function, erf function in this case.
is the unknown function and the eigenvalue.
The boundary condition is , so I specified
For small alphas my code with bvp5c works well.
However for large alphas, my solution deviates from the result in the article, and I’m encountering messages like
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I guess the boundary values may be too small and tried to scale my boundary values with C*exp(-3/alpha) but the problem remains.
How can I solve the problem? Fig.1 in https://doi.org/10.1063/5.0155331 can be referred as a correct solution to this problem. My solution looks similar to it but deviates in asymptotic values.
eigenvalues0999 = zeros(1, 30);
global alpha;
global At;
options = bvpset(‘RelTol’,1e-5,’AbsTol’,1e-5);
At = 0.999;
for i=1:30
alpha=1/i;
Psi1 = 1;
solinit = bvpinit(linspace(-3,6,30000),@mat4init,Psi1);
sol = bvp5c(@mat4ode, @mat4bc, solinit,options);
eigenvalues0999(1,i) = sol.parameters;
end
figure(Color="white");
plot(eigenvalues0999);
grid on;
legend(‘0′,’0.243′,’0.5′,’0.843′,’0.999′,’FontSize’, 14)
xlabel(‘alpha^{-1}’,’FontSize’, 14);
ylabel(‘Psi’,’FontSize’, 14);
set(gca, ‘FontSize’, 14);
function dydx = mat4ode(x,y,Psi1) % equation being solved
global alpha;
global At;
dydx = [y(2)
(-alpha^2*At*2/sqrt(pi)*exp(-x.^2)*y(2)+(1+At*erf(x)-alpha*Psi1*2/sqrt(pi)*exp(-x.^2))*y(1))/(alpha^2*(1+At*erf(x)))];
end
function res = mat4bc(ya,yb,Psi1) % boundary conditions
global alpha;
res = [ya(2)-1/alpha*exp(-3/alpha)
abs(yb(1))+abs(yb(2))
%yb(2)
ya(1)-exp(-3/alpha)];
end
function yinit = mat4init(x) % initial guess function
global alpha;
yinit = [exp(-abs(x)/alpha)
-sign(x)*1/alpha*exp(-abs(x)/alpha)];
end bvp5c, solve MATLAB Answers — New Questions
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I’m working on a scene-building example from custom data using RoadRunner HD maps.
There’s a problem that hasn’t been solved, so I’m asking
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I would like to know in detail what files apply the c++ code provided in the example, and how to create a loader HDMap binary file from custom data.I’m working on a scene-building example from custom data using RoadRunner HD maps.
There’s a problem that hasn’t been solved, so I’m asking
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I would like to know in detail what files apply the c++ code provided in the example, and how to create a loader HDMap binary file from custom data. I’m working on a scene-building example from custom data using RoadRunner HD maps.
There’s a problem that hasn’t been solved, so I’m asking
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I would like to know in detail what files apply the c++ code provided in the example, and how to create a loader HDMap binary file from custom data. roadrunner, hdmap, binary, c++ MATLAB Answers — New Questions
MATLAB Onramp 14.1 Project- Stellar Motion Task 7
Modify the Task 2 & 7 section of the script so that it performs the red shift calculation on the second star in spectra, not the sixth.
I have changed s to the second column (s= spectra(:,2)), and that is right.
How do I get the correct values of lambdaHa and speed?Modify the Task 2 & 7 section of the script so that it performs the red shift calculation on the second star in spectra, not the sixth.
I have changed s to the second column (s= spectra(:,2)), and that is right.
How do I get the correct values of lambdaHa and speed? Modify the Task 2 & 7 section of the script so that it performs the red shift calculation on the second star in spectra, not the sixth.
I have changed s to the second column (s= spectra(:,2)), and that is right.
How do I get the correct values of lambdaHa and speed? onramp, stellar motion 14.1, inramp, stellar motion MATLAB Answers — New Questions
REGISTER TODAY! New FY25 Level Up CSP Bootcamps | August and September 2024
We are excited to announce our new FY25 Level Up CSP Bootcamps, that are built to help CSP partners grow sales and technical capabilities and accelerate new customer acquisition, upsell and cross sell. Join us for the upcoming Microsoft 365 and Copilot bootcamps to get ready to acquire, upsell and expand with M365 Premium SKUs, Copilot and Copilot Studio.
NEW! We will be offering voiceover and subtitles for ten languages to support our global CSP partners.
Level Up CSP Sales Bootcamp
1-day Sales Bootcamp: Get ready to go to market and sell Microsoft 365 and Copilot
Americas/EMEA region: August 28 | 8:00 AM – 12:00 PM, Pacific Time
APAC region: September 4 | 5:00 PM – 9:00 PM, Pacific Time
Level Up CSP Pre and Post Sales Technical Bootcamp
2-day Technical Bootcamp: Secure customers with Premium SKUs, deploy Copilot and extend with Copilot Studio
Americas/EMEA region: September 11 & 12 | 7:00 AM – 11:00 AM, Pacific Time
APAC region: September 18 & 19 | 5:00 PM – 9:00 PM, Pacific Time
We are excited to announce our new FY25 Level Up CSP Bootcamps, that are built to help CSP partners grow sales and technical capabilities and accelerate new customer acquisition, upsell and cross sell. Join us for the upcoming Microsoft 365 and Copilot bootcamps to get ready to acquire, upsell and expand with M365 Premium SKUs, Copilot and Copilot Studio.
NEW! We will be offering voiceover and subtitles for ten languages to support our global CSP partners.
REGISTER TODAY!
Level Up CSP Sales Bootcamp
1-day Sales Bootcamp: Get ready to go to market and sell Microsoft 365 and Copilot
Americas/EMEA region: August 28 | 8:00 AM – 12:00 PM, Pacific Time
APAC region: September 4 | 5:00 PM – 9:00 PM, Pacific Time
Level Up CSP Pre and Post Sales Technical Bootcamp
2-day Technical Bootcamp: Secure customers with Premium SKUs, deploy Copilot and extend with Copilot Studio
Americas/EMEA region: September 11 & 12 | 7:00 AM – 11:00 AM, Pacific Time
APAC region: September 18 & 19 | 5:00 PM – 9:00 PM, Pacific Time Read More
conditional formula excel
Hi
I have a question and need help find 3 items
1) How use conditional formula and highlight the month based on the DOB
2) How to use conditional formula to highlight in the month turn first 60 based on the birth month (eg the last row should highlight Jan – 60)
Thank you
Birth dateDec 23Jan 24Feb 24Mar 24Apr 24May 24Jun 24Jul 24Aug 24Sep 24Oct 24Nov 24Dec 243/23/1948757575767676767676767676762/5/1956676768686868686868686868681/31/196459606060606060606060606060
Hi I have a question and need help find 3 items1) How use conditional formula and highlight the month based on the DOB2) How to use conditional formula to highlight in the month turn first 60 based on the birth month (eg the last row should highlight Jan – 60) Thank youBirth dateDec 23Jan 24Feb 24Mar 24Apr 24May 24Jun 24Jul 24Aug 24Sep 24Oct 24Nov 24Dec 243/23/1948757575767676767676767676762/5/1956676768686868686868686868681/31/196459606060606060606060606060 Read More
How to Batch convert ape to mp3 that retains good quality?
I recently downloaded hundreds of music files in APE format. I’m aware that APE is a lossless audio format, which means it preserves the original quality of the audio, but it’s not widely supported by many devices and media players. Therefore, I need to convert APE to MP3, a more universally compatible format.
Could anyone recommend a reliable method for batch converting APE to MP3 on a Windows PC or Mac? Ideally, I’d like something that can handle large batches efficiently without compromising too much on audio quality.
I recently downloaded hundreds of music files in APE format. I’m aware that APE is a lossless audio format, which means it preserves the original quality of the audio, but it’s not widely supported by many devices and media players. Therefore, I need to convert APE to MP3, a more universally compatible format. Could anyone recommend a reliable method for batch converting APE to MP3 on a Windows PC or Mac? Ideally, I’d like something that can handle large batches efficiently without compromising too much on audio quality. Read More
Active Directory Users Remapping in DevOps Server 2022
Hi All,
We had a ransomware attack on our AD server and DevOps server. Luckily I had a backup of the DevOps server which I restored back after formating both the servers. I did not change anything after format hostname of DevOps & AD server, IP address, the domain name , created same user names in active directory, everything I have kept identical.
After installation and configuring DevOps AD users are not able to log in to DevOps. It keeps asking for credentials whenever a user tries to connect. Is there any option in TFS to remap active directory users? Please let me know. There are so many project created in TFS and its impossible for us to go and add AD users again on each project.
Regards
Imran Shaikh
Hi All,We had a ransomware attack on our AD server and DevOps server. Luckily I had a backup of the DevOps server which I restored back after formating both the servers. I did not change anything after format hostname of DevOps & AD server, IP address, the domain name , created same user names in active directory, everything I have kept identical.After installation and configuring DevOps AD users are not able to log in to DevOps. It keeps asking for credentials whenever a user tries to connect. Is there any option in TFS to remap active directory users? Please let me know. There are so many project created in TFS and its impossible for us to go and add AD users again on each project. RegardsImran Shaikh Read More
Folder Re-direction to OneDrive
Morning All ,
We are in the process of moving away from Folder redirection to each user OneDrive. Do you perhaps have a best practice step by step to disable the folder redirection and then sync the user files to OneDrive
Thanks
Morning All , We are in the process of moving away from Folder redirection to each user OneDrive. Do you perhaps have a best practice step by step to disable the folder redirection and then sync the user files to OneDriveThanks Read More
Power BI, a measure is not distributed over a certain code in a matrix visual
Hi all,
I need help & I think a planning engineer would easily understand the situation.
I’ve 4 tables, named TActDB, TCodes, TAPerc & TDate (which is recognized as date table).
TActDB linked to TCodes by one to one both direction relation via column named “Activity ID” (Unique).
TActDB linked to TAPerc by one to many relationship via same column “Activity ID” ( See Pic#1)
in table TAPerc I’ve created a measure “**bleep** EMH” (i.e.: Cumulative Earned Manhour = ∑EMH) with the below DAX.
**bleep** EMH = IF(SUM(TAPerc[EMH])=0,BLANK(),CALCULATE(SUM(TAPerc[EMH]),FILTER(ALL(TAPerc),TAPerc[DDate]<=MAX(TDate[Date]))))
4. The 4th table “TDate” which I use to filter date thru a slicer. And the TAPerc have the progress under each date (weekly basis), and have been unpivot during the power query. This is why in the DAX above I used “All(Table)” to supersede any filtered dates and then want it to apply the calculations as long as the date is <= the max applied date in the slicer.
now the issue is when i used a matrix visual it couldn’t distribute the **bleep** EMH over the building, noting that building is a column under the table TCodes (See Pic#2)
I tried having the one to many relationship to be both directions and single, but neither didn’t work.
I don’t know why it’s unable to distribute the **bleep** EMH over the buildings and how to resolve the issue.
Hi all,I need help & I think a planning engineer would easily understand the situation.I’ve 4 tables, named TActDB, TCodes, TAPerc & TDate (which is recognized as date table).TActDB linked to TCodes by one to one both direction relation via column named “Activity ID” (Unique).TActDB linked to TAPerc by one to many relationship via same column “Activity ID” ( See Pic#1)Pic#1 in table TAPerc I’ve created a measure “**bleep** EMH” (i.e.: Cumulative Earned Manhour = ∑EMH) with the below DAX. **bleep** EMH = IF(SUM(TAPerc[EMH])=0,BLANK(),CALCULATE(SUM(TAPerc[EMH]),FILTER(ALL(TAPerc),TAPerc[DDate]<=MAX(TDate[Date])))) 4. The 4th table “TDate” which I use to filter date thru a slicer. And the TAPerc have the progress under each date (weekly basis), and have been unpivot during the power query. This is why in the DAX above I used “All(Table)” to supersede any filtered dates and then want it to apply the calculations as long as the date is <= the max applied date in the slicer.now the issue is when i used a matrix visual it couldn’t distribute the **bleep** EMH over the building, noting that building is a column under the table TCodes (See Pic#2) I tried having the one to many relationship to be both directions and single, but neither didn’t work.I don’t know why it’s unable to distribute the **bleep** EMH over the buildings and how to resolve the issue. Read More
AI and NET: AI in Action in Real-World .NET Applications
Building a LLM from zero
Make sure to check out the full video for an in-depth look at how you can start leveraging these tools today and propel your projects into the future of AI-driven development.
Resources
Dicta: https://dicta.org.il/
BERT: https://huggingface.co/google-bert/bert-base-uncased
All .NET Community sessions .NET Community Standups | .NET Live TV (microsoft.com)
Recording
Next Steps
Microsoft Tech Community – Latest Blogs –Read More
Importing GeoTIFF results in a rotated image
Hello all,
hopefully a very simple question, with a simple solution:
I would like to import some GeoTIFFs to build my 3D model based on.
But after the import the image looks slightly rotated and no longer parallel to the X and Y axes.
Can someone expain me why?
When I import the same GeoTIFF with the mapping toolbox the result looks like expected:
I assume it has something to do with projection or World Origin. But I can’t identify it.
Thx in advance,
TimHello all,
hopefully a very simple question, with a simple solution:
I would like to import some GeoTIFFs to build my 3D model based on.
But after the import the image looks slightly rotated and no longer parallel to the X and Y axes.
Can someone expain me why?
When I import the same GeoTIFF with the mapping toolbox the result looks like expected:
I assume it has something to do with projection or World Origin. But I can’t identify it.
Thx in advance,
Tim Hello all,
hopefully a very simple question, with a simple solution:
I would like to import some GeoTIFFs to build my 3D model based on.
But after the import the image looks slightly rotated and no longer parallel to the X and Y axes.
Can someone expain me why?
When I import the same GeoTIFF with the mapping toolbox the result looks like expected:
I assume it has something to do with projection or World Origin. But I can’t identify it.
Thx in advance,
Tim geotiff, data import, gis MATLAB Answers — New Questions
Format cells with distributed indent not working
I have entered value in cell
I am trying to format chinse string to keep same width like below:
I try to set with below
But, it did not take effect, its result like format with center
until I enter space between 一 and 二, it will be like
It seems excel treat 一二 as single words instead of two words
I have entered value in cellI am trying to format chinse string to keep same width like below:I try to set with below But, it did not take effect, its result like format with centeruntil I enter space between 一 and 二, it will be likeIt seems excel treat 一二 as single words instead of two words Read More
Beta app
Hi all. I’ve been a windows insider for a while. Today I’m trying to get my Android phone to show up in windows explorer. I am in the Release insider channel but need the Link To Windows beta app for the phone to show in Windows Explorer. I have the Link To Windows app on my phone but need the beta version. Where do I get this beta version?
Thanks in advance ☺️
Hi all. I’ve been a windows insider for a while. Today I’m trying to get my Android phone to show up in windows explorer. I am in the Release insider channel but need the Link To Windows beta app for the phone to show in Windows Explorer. I have the Link To Windows app on my phone but need the beta version. Where do I get this beta version? Thanks in advance ☺️ Read More
MDI not firing alert – “Suspicious additions to sensitive groups (external ID 2024)”
Hi everyone,
i have checked our MDI installation with the Powershell – it is all green. Also the action itself is in the portal.
The group is marked sensitive by default. A user gets added by another Domain Admin.
This should fire an high alert? But nothin happens.
Is there any setting i am missing? We started with a “german AD” so the group names are in German. But this cannot make any difference.
BR
Stephan
Hi everyone, i have checked our MDI installation with the Powershell – it is all green. Also the action itself is in the portal. The group is marked sensitive by default. A user gets added by another Domain Admin.This should fire an high alert? But nothin happens. Is there any setting i am missing? We started with a “german AD” so the group names are in German. But this cannot make any difference. BRStephan Read More
Unit Test Cases for SharePoint Extensions (Application Customizer)
Hi team
Can someone please suggest how to write automated unit test cases for application customizer.
#SPFX
#ApplicationCustomizer.
Hi teamCan someone please suggest how to write automated unit test cases for application customizer.#SPFX#ApplicationCustomizer. Read More
Where do permanently deleted files go after Recycle Bin on Windows 11?
I recently emptied my Recycle Bin on Windows 11, but now I realize I need to recover some important files that were permanently deleted. I’m aware that these files are not immediately removed from the hard drive and that there might be ways to retrieve them. I am wondering where do permanently deleted files go after Recycle Bin on Windows 11?
Can someone guide me on the best methods or tools to recover permanently deleted files on Windows 11? Are there any recommended software programs or specific steps I should follow to maximize the chances of getting my data back? I appreciate any help or suggestions!
I recently emptied my Recycle Bin on Windows 11, but now I realize I need to recover some important files that were permanently deleted. I’m aware that these files are not immediately removed from the hard drive and that there might be ways to retrieve them. I am wondering where do permanently deleted files go after Recycle Bin on Windows 11? Can someone guide me on the best methods or tools to recover permanently deleted files on Windows 11? Are there any recommended software programs or specific steps I should follow to maximize the chances of getting my data back? I appreciate any help or suggestions! Read More
Moving Certification from one account to another
Hello everyone
I have the following problem.
I have two MS accounts:
Account 1 is my private one
Account 2 is my work account
Now I have done all certifications on my private account (account 1)
Last week I accidentally did the DP-600 certification on the work account (account 2)
I would now like to move the DP-600 certification from my work account (A2) to my private account (A1).
How can I do this?
Hello everyoneI have the following problem.I have two MS accounts:Account 1 is my private oneAccount 2 is my work accountNow I have done all certifications on my private account (account 1)Last week I accidentally did the DP-600 certification on the work account (account 2)I would now like to move the DP-600 certification from my work account (A2) to my private account (A1).How can I do this? Read More
Class Team – disappearing channels
Hi, we started using class teams on 8/7/24. They were generated using School Data Sync.
It has been reported that channels in the Class Team are disappearing and that it is an intermittent issue. Has anyone else experienced this?
Hi, we started using class teams on 8/7/24. They were generated using School Data Sync.It has been reported that channels in the Class Team are disappearing and that it is an intermittent issue. Has anyone else experienced this? Read More
When setting the motion input for a prismatic joint to “provided by input,” what format should the input be in?
I set the input for the prismatic joint to ‘provided by input’ in the motion settings, and while I found that the input should include information on position, velocity, and acceleration, I couldn’t find the exact format in which this information should be provided. Could you please let me know the required format?I set the input for the prismatic joint to ‘provided by input’ in the motion settings, and while I found that the input should include information on position, velocity, and acceleration, I couldn’t find the exact format in which this information should be provided. Could you please let me know the required format? I set the input for the prismatic joint to ‘provided by input’ in the motion settings, and while I found that the input should include information on position, velocity, and acceleration, I couldn’t find the exact format in which this information should be provided. Could you please let me know the required format? simulink, simscape MATLAB Answers — New Questions
Problem Plotting Fourier Transforms of Sine waves
Hello!
So let me start off by saying that I barely use MatLab. However, my professor assigned us a homework in which we have to find the fourier transform of a multiplication of sine waves and plot it. This is what I am trying..
>> syms x y
>> f=sin(2*x)*sin(5*x)
f =
sin(2*x)*sin(5*x)
>> g=fourier(f)
g =
2*transform::fourier(cos(x)*sin(x)^6, x, -w) – 20*transform::fourier(cos(x)^3*sin(x)^4, x, -w) + 10*transform::fourier(cos(x)^5*sin(x)^2, x, -w)
>> ezplot(fourier(g))
??? Error using ==> char
Cell elements must be character arrays.
Error in ==> ezplot at 160
fmsg = char(f);
Error in ==> sym.ezplot at 45
h = ezplot(char(f));
Why am I getting this error? How can I plot the Fourier transforms of these sine waves?
Any help would be appreciated!!Hello!
So let me start off by saying that I barely use MatLab. However, my professor assigned us a homework in which we have to find the fourier transform of a multiplication of sine waves and plot it. This is what I am trying..
>> syms x y
>> f=sin(2*x)*sin(5*x)
f =
sin(2*x)*sin(5*x)
>> g=fourier(f)
g =
2*transform::fourier(cos(x)*sin(x)^6, x, -w) – 20*transform::fourier(cos(x)^3*sin(x)^4, x, -w) + 10*transform::fourier(cos(x)^5*sin(x)^2, x, -w)
>> ezplot(fourier(g))
??? Error using ==> char
Cell elements must be character arrays.
Error in ==> ezplot at 160
fmsg = char(f);
Error in ==> sym.ezplot at 45
h = ezplot(char(f));
Why am I getting this error? How can I plot the Fourier transforms of these sine waves?
Any help would be appreciated!! Hello!
So let me start off by saying that I barely use MatLab. However, my professor assigned us a homework in which we have to find the fourier transform of a multiplication of sine waves and plot it. This is what I am trying..
>> syms x y
>> f=sin(2*x)*sin(5*x)
f =
sin(2*x)*sin(5*x)
>> g=fourier(f)
g =
2*transform::fourier(cos(x)*sin(x)^6, x, -w) – 20*transform::fourier(cos(x)^3*sin(x)^4, x, -w) + 10*transform::fourier(cos(x)^5*sin(x)^2, x, -w)
>> ezplot(fourier(g))
??? Error using ==> char
Cell elements must be character arrays.
Error in ==> ezplot at 160
fmsg = char(f);
Error in ==> sym.ezplot at 45
h = ezplot(char(f));
Why am I getting this error? How can I plot the Fourier transforms of these sine waves?
Any help would be appreciated!! fourier, transform, sine, wave, plotting, ezplot MATLAB Answers — New Questions